File size: 46,761 Bytes
32cc95f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Private California Domestic Partnership</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.floating-form {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
transition: all 0.3s ease;
}
.floating-buttons {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
display: flex;
flex-direction: column;
gap: 12px;
}
.form-container {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
max-width: 800px;
max-height: 90vh;
overflow-y: auto;
z-index: 1001;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.appointment-container {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
max-width: 500px;
max-height: 90vh;
overflow-y: auto;
z-index: 1001;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1000;
}
.form-section {
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 1px solid #e2e8f0;
}
.form-title {
font-size: 1.25rem;
font-weight: bold;
margin-bottom: 1rem;
color: #2c5282;
}
.required-field::after {
content: " *";
color: #e53e3e;
}
@media print {
.no-print {
display: none !important;
}
body {
background: white !important;
color: black !important;
}
.form-container {
position: static;
transform: none;
width: 100%;
max-width: 100%;
max-height: none;
box-shadow: none;
}
}
.floating-button {
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.floating-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.floating-button:active {
transform: translateY(1px);
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Header -->
<header class="bg-blue-900 text-white py-6">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<h1 class="text-3xl font-bold">Private California Domestic Household</h1>
<p class="text-blue-200">Under California Family Code Section 297.1</p>
</div>
<img src="" alt="Logo" class="h-20">
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<div class="bg-white rounded-lg shadow-md p-6 mb-8">
<h2 class="text-2xl font-bold text-blue-800 mb-4">About Domestic Partnerships</h2>
<p class="mb-4">Domestic partnerships in California are available to opposite-sex couples, as established under California Family Code Section 297.1.</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div class="bg-blue-50 p-4 rounded-lg">
<h3 class="text-lg font-semibold text-blue-700 mb-2">Eligibility Requirements</h3>
<ul class="list-disc pl-5 space-y-1">
<li>Both partners must be at least 18 years old</li>
<li>Not married or in another domestic partnership</li>
<li>Not closely related by blood</li>
<li>Share a common residence</li>
<li>Mutually responsible for each other's welfare</li>
</ul>
</div>
<div class="bg-green-50 p-4 rounded-lg">
<h3 class="text-lg font-semibold text-green-700 mb-2">Benefits</h3>
<ul class="list-disc pl-5 space-y-1">
<li>Health insurance coverage</li>
<li>Hospital visitation rights</li>
<li>Tax benefits</li>
<li>Inheritance rights</li>
<li>Parental rights and responsibilities</li>
</ul>
</div>
</div>
<h3 class="text-xl font-semibold text-blue-800 mb-3">How to Register</h3>
<ol class="list-decimal pl-5 space-y-2 mb-6">
<li>Complete the Declaration of Confidential Domestic Partnership form (DP-1A)</li>
<li>Both partners must sign the form in front of a notary public</li>
<li>Submit the form with the required fee to the Secretary of State</li>
<li>Receive your Certificate of Domestic Partnership</li>
</ol>
<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-6">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-circle text-yellow-500 mt-1"></i>
</div>
<div class="ml-3">
<h3 class="text-sm font-medium text-yellow-800">Important Notice</h3>
<div class="mt-2 text-sm text-yellow-700">
<p>Domestic partnerships are legally binding. Termination requires filing a Notice of Termination of Domestic Partnership (Form DP-3) with the Secretary of State or through the court system.</p>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-6">
<h2 class="text-2xl font-bold text-blue-800 mb-4">Frequently Asked Questions</h2>
<div class="space-y-4">
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full px-4 py-3 text-left font-medium text-blue-700 bg-gray-50 hover:bg-gray-100 focus:outline-none">
<span class="flex items-center justify-between">
<span>What is the difference between marriage and domestic partnership?</span>
<i class="fas fa-chevron-down transition-transform duration-200"></i>
</span>
</button>
<div class="faq-answer px-4 py-3 bg-white hidden">
<p class="text-gray-700">While both provide legal recognition of a relationship, domestic partnerships Today, remain an option for couples who prefer not to marry or for opposite-sex couples where at least one partner is 62 or older.</p>
</div>
</div>
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full px-4 py-3 text-left font-medium text-blue-700 bg-gray-50 hover:bg-gray-100 focus:outline-none">
<span class="flex items-center justify-between">
<span>How much does it cost to register a domestic partnership?</span>
<i class="fas fa-chevron-down transition-transform duration-200"></i>
</span>
</button>
<div class="faq-answer px-4 py-3 bg-white hidden">
<p class="text-gray-700">The current filing fee is $33. Additional certified copies of the Certificate of Domestic Partnership are $13 each.</p>
</div>
</div>
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full px-4 py-3 text-left font-medium text-blue-700 bg-gray-50 hover:bg-gray-100 focus:outline-none">
<span class="flex items-center justify-between">
<span>How long does it take to process the registration?</span>
<i class="fas fa-chevron-down transition-transform duration-200"></i>
</span>
</button>
<div class="faq-answer px-4 py-3 bg-white hidden">
<p class="text-gray-700">Processing typically takes 6-8 weeks from the date the Secretary of State receives your completed form and payment. Expedited processing is not available.</p>
</div>
</div>
</div>
</div>
</main>
<!-- Floating Buttons -->
<div class="floating-buttons no-print">
<button id="appointmentButton" class="floating-button bg-purple-600 hover:bg-purple-700 text-white font-bold py-3 px-4 rounded-full shadow-lg flex items-center">
<i class="fas fa-calendar-check mr-2"></i>
<span class="hidden sm:inline">Schedule Signing</span>
</button>
<button id="formButton" class="floating-button bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-4 rounded-full shadow-lg flex items-center">
<i class="fas fa-file-alt mr-2"></i>
<span class="hidden sm:inline">Start DP-1A Form</span>
</button>
</div>
<!-- Form Overlay -->
<div id="overlay" class="overlay"></div>
<!-- Form Container -->
<div id="formContainer" class="form-container bg-white rounded-lg no-print">
<div class="p-6">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold text-blue-800">Confidential Declaration of Domestic Partnership</h2>
<button id="closeForm" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times text-2xl"></i>
</button>
</div>
<div class="bg-blue-50 p-4 rounded-lg mb-6">
<p class="text-blue-800 font-medium">California Family Code Section 297.1</p>
<p class="text-sm">This form is used to establish a domestic partnership in California. Both partners must sign in the presence of a notary public.</p>
</div>
<form id="domesticPartnershipForm">
<!-- Section 1: Partner A Information -->
<div class="form-section">
<div class="form-title">Partner A Information</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="partnerA_firstName" class="block text-sm font-medium text-gray-700 required-field">First Name</label>
<input type="text" id="partnerA_firstName" name="partnerA_firstName" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div>
<label for="partnerA_middleName" class="block text-sm font-medium text-gray-700">Middle Name</label>
<input type="text" id="partnerA_middleName" name="partnerA_middleName" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="partnerA_lastName" class="block text-sm font-medium text-gray-700 required-field">Last Name</label>
<input type="text" id="partnerA_lastName" name="partnerA_lastName" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div>
<label for="partnerA_suffix" class="block text-sm font-medium text-gray-700">Suffix</label>
<input type="text" id="partnerA_suffix" name="partnerA_suffix" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="partnerA_dob" class="block text-sm font-medium text-gray-700 required-field">Date of Birth</label>
<input type="date" id="partnerA_dob" name="partnerA_dob" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div>
<label for="partnerA_gender" class="block text-sm font-medium text-gray-700 required-field">Gender</label>
<select id="partnerA_gender" name="partnerA_gender" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
<option value="">Select</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="non-binary">Non-binary</option>
<option value="other">Other</option>
</select>
</div>
</div>
<div class="mb-4">
<label for="partnerA_ssn" class="block text-sm font-medium text-gray-700">Social Security Number (last 4 digits) (Not Required here - Form Requirements differ</label>
<input type="text" id="partnerA_ssn" name="partnerA_ssn" maxlength="4" class="mt-1 block w-24 border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div class="mb-4">
<label for="partnerA_address" class="block text-sm font-medium text-gray-700 required-field">Current Address</label>
<textarea id="partnerA_address" name="partnerA_address" rows="2" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required></textarea>
</div>
</div>
<!-- Section 2: Partner B Information -->
<div class="form-section">
<div class="form-title">Partner B Information</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="partnerB_firstName" class="block text-sm font-medium text-gray-700 required-field">First Name</label>
<input type="text" id="partnerB_firstName" name="partnerB_firstName" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div>
<label for="partnerB_middleName" class="block text-sm font-medium text-gray-700">Middle Name</label>
<input type="text" id="partnerB_middleName" name="partnerB_middleName" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="partnerB_lastName" class="block text-sm font-medium text-gray-700 required-field">Last Name</label>
<input type="text" id="partnerB_lastName" name="partnerB_lastName" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div>
<label for="partnerB_suffix" class="block text-sm font-medium text-gray-700">Suffix</label>
<input type="text" id="partnerB_suffix" name="partnerB_suffix" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="partnerB_dob" class="block text-sm font-medium text-gray-700 required-field">Date of Birth</label>
<input type="date" id="partnerB_dob" name="partnerB_dob" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div>
<label for="partnerB_gender" class="block text-sm font-medium text-gray-700 required-field">Gender</label>
<select id="partnerB_gender" name="partnerB_gender" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
<option value="">Select</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="non-binary">Non-binary</option>
<option value="other">Other</option>
</select>
</div>
</div>
<div class="mb-4">
<label for="partnerB_ssn" class="block text-sm font-medium text-gray-700">Social Security Number (last 4 digits) (Not Required here - Form Requirements differ</label>
<input type="text" id="partnerB_ssn" name="partnerB_ssn" maxlength="4" class="mt-1 block w-24 border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div class="mb-4">
<label for="partnerB_address" class="block text-sm font-medium text-gray-700 required-field">Current Address</label>
<textarea id="partnerB_address" name="partnerB_address" rows="2" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required></textarea>
</div>
</div>
<!-- Section 3: Domestic Partnership Information -->
<div class="form-section">
<div class="form-title">Confidential Domestic Partnership Information</div>
<div class="mb-4">
<label for="shared_residence" class="block text-sm font-medium text-gray-700 required-field">Shared Residence Address</label>
<textarea id="shared_residence" name="shared_residence" rows="2" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required></textarea>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="date_established" class="block text-sm font-medium text-gray-700 required-field">Date Domestic Partnership Established</label>
<input type="date" id="date_established" name="date_established" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div>
<label for="date_signed" class="block text-sm font-medium text-gray-700 required-field">Date Signed</label>
<input type="date" id="date_signed" name="date_signed" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 required-field">Are you and your partner:</label>
<div class="mt-2 space-y-2">
<div class="flex items-center">
<input id="same_sex" name="relationship_type" type="radio" value="same_sex" class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300" required>
<label for="same_sex" class="ml-2 block text-sm text-gray-700">Option not available</label>
</div>
<div class="flex items-center">
<input id="opposite_sex" name="relationship_type" type="radio" value="opposite_sex" class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300">
<label for="opposite_sex" class="ml-2 block text-sm text-gray-700">Opposite-sex partners with at least one partner 62 or older</label>
</div>
</div>
</div>
</div>
<!-- Section 4: Notary Section -->
<div class="form-section">
<div class="form-title">Notary Section</div>
<div class="mb-4">
<label for="notary_name" class="block text-sm font-medium text-gray-700">Notary Public Name</label>
<input type="text" id="notary_name" name="notary_name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="notary_commission" class="block text-sm font-medium text-gray-700">Notary Commission Number</label>
<input type="text" id="notary_commission" name="notary_commission" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="notary_expires" class="block text-sm font-medium text-gray-700">Notary Commission Expires</label>
<input type="date" id="notary_expires" name="notary_expires" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500">
</div>
</div>
</div>
<!-- Section 5: Signatures -->
<div class="form-section">
<div class="form-title">Signatures</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<div class="mb-2">
<label for="partnerA_signature" class="block text-sm font-medium text-gray-700 required-field">Partner A Signature</label>
<input type="text" id="partnerA_signature" name="partnerA_signature" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div class="mb-2">
<label for="partnerA_signature_date" class="block text-sm font-medium text-gray-700 required-field">Date Signed</label>
<input type="date" id="partnerA_signature_date" name="partnerA_signature_date" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
</div>
<div>
<div class="mb-2">
<label for="partnerB_signature" class="block text-sm font-medium text-gray-700 required-field">Partner B Signature</label>
<input type="text" id="partnerB_signature" name="partnerB_signature" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
<div class="mb-2">
<label for="partnerB_signature_date" class="block text-sm font-medium text-gray-700 required-field">Date Signed</label>
<input type="date" id="partnerB_signature_date" name="partnerB_signature_date" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500" required>
</div>
</div>
</div>
<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-6">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-circle text-yellow-500 mt-1"></i>
</div>
<div class="ml-3">
<h3 class="text-sm font-medium text-yellow-800">Signature Requirements</h3>
<div class="mt-2 text-sm text-yellow-700">
<p>Both partners must sign this form in the presence of a notary public. The notary will complete the notary section after verifying identities and witnessing signatures.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Form Actions -->
<div class="flex flex-col sm:flex-row justify-between space-y-4 sm:space-y-0 sm:space-x-4">
<button type="button" id="printForm" class="inline-flex items-center px-4 py-2 border border-gray-300 shadow-sm text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
<i class="fas fa-print mr-2"></i> Print Form
</button>
<div class="space-x-4">
<button type="button" id="resetForm" class="inline-flex items-center px-4 py-2 border border-gray-300 shadow-sm text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
<i class="fas fa-redo mr-2"></i> Reset Form
</button>
<button type="submit" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
<i class="fas fa-paper-plane mr-2"></i> Submit Form
</button>
</div>
</div>
</form>
</div>
</div>
<!-- Appointment Container -->
<div id="appointmentContainer" class="appointment-container bg-white rounded-lg no-print">
<div class="p-6">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold text-purple-800">Schedule Signing Appointment</h2>
<button id="closeAppointment" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times text-2xl"></i>
</button>
</div>
<div class="bg-purple-50 p-4 rounded-lg mb-6">
<p class="text-purple-800 font-medium">Notary Public Signing Service</p>
<p class="text-sm">Schedule an appointment with a notary public to sign your Domestic Partnership Agreement. Both partners must be present with valid photo identification.</p>
</div>
<form id="appointmentForm">
<div class="form-section">
<div class="form-title">Appointment Details</div>
<div class="mb-4">
<label for="appointment_date" class="block text-sm font-medium text-gray-700 required-field">Preferred Date</label>
<input type="date" id="appointment_date" name="appointment_date" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-purple-500 focus:border-purple-500" required>
</div>
<div class="mb-4">
<label for="appointment_time" class="block text-sm font-medium text-gray-700 required-field">Preferred Time</label>
<select id="appointment_time" name="appointment_time" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-purple-500 focus:border-purple-500" required>
<option value="">Select a time</option>
<option value="09:00">9:00 AM</option>
<option value="10:00">10:00 AM</option>
<option value="11:00">11:00 AM</option>
<option value="12:00">12:00 PM</option>
<option value="13:00">1:00 PM</option>
<option value="14:00">2:00 PM</option>
<option value="15:00">3:00 PM</option>
<option value="16:00">4:00 PM</option>
</select>
</div>
<div class="mb-4">
<label for="appointment_location" class="block text-sm font-medium text-gray-700 required-field">Location Preference</label>
<select id="appointment_location" name="appointment_location" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-purple-500 focus:border-purple-500" required>
<option value="">Select a location</option>
<option value="office">Our Office (123 Legal St, Sacramento)</option>
<option value="mobile">Mobile Notary (We come to you)</option>
<option value="virtual">Virtual Notarization (Online)</option>
</select>
</div>
</div>
<div class="form-section">
<div class="form-title">Contact Information</div>
<div class="mb-4">
<label for="contact_name" class="block text-sm font-medium text-gray-700 required-field">Primary Contact Name</label>
<input type="text" id="contact_name" name="contact_name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-purple-500 focus:border-purple-500" required>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label for="contact_phone" class="block text-sm font-medium text-gray-700 required-field">Phone Number</label>
<input type="tel" id="contact_phone" name="contact_phone" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-purple-500 focus:border-purple-500" required>
</div>
<div>
<label for="contact_email" class="block text-sm font-medium text-gray-700 required-field">Email Address</label>
<input type="email" id="contact_email" name="contact_email" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-purple-500 focus:border-purple-500" required>
</div>
</div>
<div class="mb-4">
<label for="special_requests" class="block text-sm font-medium text-gray-700">Special Requests or Notes</label>
<textarea id="special_requests" name="special_requests" rows="3" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-purple-500 focus:border-purple-500"></textarea>
</div>
</div>
<div class="bg-purple-50 border-l-4 border-purple-400 p-4 mb-6">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-info-circle text-purple-500 mt-1"></i>
</div>
<div class="ml-3">
<h3 class="text-sm font-medium text-purple-800">What to Bring</h3>
<div class="mt-2 text-sm text-purple-700">
<ul class="list-disc pl-5 space-y-1">
<li>Completed DP-1A form (if applicable)</li>
<li>Valid government-issued photo ID for both partners</li>
<li>Payment for notary services ($15 standard fee)</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Form Actions -->
<div class="flex flex-col sm:flex-row justify-end space-y-4 sm:space-y-0 sm:space-x-4">
<button type="button" id="cancelAppointment" class="inline-flex items-center px-4 py-2 border border-gray-300 shadow-sm text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
<i class="fas fa-times mr-2"></i> Cancel
</button>
<button type="submit" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
<i class="fas fa-calendar-check mr-2"></i> Schedule Appointment
</button>
</div>
</form>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">Contact Information</h3>
<p class="mb-2"><i class="fas fa-map-marker-alt mr-2"></i> Private Household</p>
<p class="mb-2"><i class="fas fa-building mr-2"></i> Confidential Domestic Partnership</p>
<p class="mb-2"><i class="fas fa-phone mr-2"></i> </p>
<p><i class="fas fa-envelope mr-2"></i> </p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="https://www.sos.ca.gov/registries/domestic-partners-registry" class="text-blue-300 hover:text-blue-100" target="_blank">Private Website</a></li>
<li><a href="https://leginfo.legislature.ca.gov/faces/codes_displaySection.xhtml?lawCode=FAM§ionNum=297.1" class="text-blue-300 hover:text-blue-100" target="_blank">Family Code Section 297.1</a></li>
<li><a href="#" class="text-blue-300 hover:text-blue-100">Termination of Partnership</a></li>
<li><a href="#" class="text-blue-300 hover:text-blue-100">Frequently Asked Questions</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Additional Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-blue-300 hover:text-blue-100">Legal Rights and Benefits</a></li>
<li><a href="#" class="text-blue-300 hover:text-blue-100">Tax Information</a></li>
<li><a href="#" class="text-blue-300 hover:text-blue-100">Health Insurance Guidance</a></li>
<li><a href="#" class="text-blue-300 hover:text-blue-100">Parental Rights</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-6 text-sm text-gray-400">
<p>© 2025. All rights reserved.</p>
<p class="mt-2">This website is for informational purposes only and is not a substitute for legal advice.</p>
</div>
</div>
</footer>
<script>
// Toggle FAQ answers
document.querySelectorAll('.faq-question').forEach(button => {
button.addEventListener('click', () => {
const answer = button.nextElementSibling;
const icon = button.querySelector('i');
answer.classList.toggle('hidden');
icon.classList.toggle('transform');
icon.classList.toggle('rotate-180');
});
});
// Form modal functionality
const formButton = document.getElementById('formButton');
const formContainer = document.getElementById('formContainer');
const appointmentButton = document.getElementById('appointmentButton');
const appointmentContainer = document.getElementById('appointmentContainer');
const overlay = document.getElementById('overlay');
const closeForm = document.getElementById('closeForm');
const closeAppointment = document.getElementById('closeAppointment');
formButton.addEventListener('click', () => {
formContainer.style.display = 'block';
overlay.style.display = 'block';
document.body.style.overflow = 'hidden';
});
appointmentButton.addEventListener('click', () => {
appointmentContainer.style.display = 'block';
overlay.style.display = 'block';
document.body.style.overflow = 'hidden';
});
closeForm.addEventListener('click', () => {
formContainer.style.display = 'none';
overlay.style.display = 'none';
document.body.style.overflow = 'auto';
});
closeAppointment.addEventListener('click', () => {
appointmentContainer.style.display = 'none';
overlay.style.display = 'none';
document.body.style.overflow = 'auto';
});
overlay.addEventListener('click', () => {
formContainer.style.display = 'none';
appointmentContainer.style.display = 'none';
overlay.style.display = 'none';
document.body.style.overflow = 'auto';
});
// Form functionality
const form = document.getElementById('domesticPartnershipForm');
const printButton = document.getElementById('printForm');
const resetButton = document.getElementById('resetForm');
printButton.addEventListener('click', () => {
window.print();
});
resetButton.addEventListener('click', () => {
if (confirm('Are you sure you want to reset all form fields?')) {
form.reset();
}
});
form.addEventListener('submit', (e) => {
e.preventDefault();
// Validate required fields
let isValid = true;
document.querySelectorAll('[required]').forEach(field => {
if (!field.value.trim()) {
field.classList.add('border-red-500');
isValid = false;
} else {
field.classList.remove('border-red-500');
}
});
if (!isValid) {
alert('Please fill in all required fields marked with *.');
return;
}
// Here you would typically send the form data to a server
alert('Form submitted successfully! In a real application, this would be sent to the server.');
// Close the form
formContainer.style.display = 'none';
overlay.style.display = 'none';
document.body.style.overflow = 'auto';
});
// Appointment form functionality
const appointmentForm = document.getElementById('appointmentForm');
const cancelAppointment = document.getElementById('cancelAppointment');
cancelAppointment.addEventListener('click', () => {
appointmentContainer.style.display = 'none';
overlay.style.display = 'none';
document.body.style.overflow = 'auto';
});
appointmentForm.addEventListener('submit', (e) => {
e.preventDefault();
// Validate required fields
let isValid = true;
appointmentForm.querySelectorAll('[required]').forEach(field => {
if (!field.value.trim()) {
field.classList.add('border-red-500');
isValid = false;
} else {
field.classList.remove('border-red-500');
}
});
if (!isValid) {
alert('Please fill in all required fields marked with *.');
return;
}
// Here you would typically send the appointment data to a server
const formData = new FormData(appointmentForm);
const appointmentData = Object.fromEntries(formData.entries());
// Display confirmation
alert(`Appointment scheduled successfully!\n\nDate: ${appointmentData.appointment_date}\nTime: ${appointmentData.appointment_time}\nLocation: ${appointmentData.appointment_location}\n\nWe will contact you shortly to confirm.`);
// Close the appointment form
appointmentContainer.style.display = 'none';
overlay.style.display = 'none';
document.body.style.overflow = 'auto';
// Reset the form
appointmentForm.reset();
});
// Set minimum date for appointment to tomorrow
const today = new Date();
const tomorrow = new Date(today);
tomorrow.setDate(tomorrow.getDate() + 1);
const dd = String(tomorrow.getDate()).padStart(2, '0');
const mm = String(tomorrow.getMonth() + 1).padStart(2, '0');
const yyyy = tomorrow.getFullYear();
const minDate = yyyy + '-' + mm + '-' + dd;
document.getElementById('appointment_date').min = minDate;
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=privateuserh/priv-cadp-vbeta1-01" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |