-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep3.html
103 lines (74 loc) · 5.12 KB
/
step3.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register Page</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/second.css">
</head>
<body>
<div class="wrapper">
<h1>Register Page</h1>
<ul>
<li>
<a href="index.html">
<div class="circle">1</div>
<span>Account</span>
</a>
</li>
<li>
<a href="step2.html">
<div class="circle">2</div>
<span>Details</span>
</a>
</li>
<li class="current">
<a href="step3.html">
<div class="circle">3</div>
<span>Confirmation</span>
</a>
</li>
</ul>
<main>
<div class="left-col">
<h2>Confirmation</h2>
<label>Terms of Service</label>
<textarea class="fix-height">Please read these Terms and Conditions carefully before using the Mydomain.com website operated by Mydomain.
Your access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms constituteapply to all visitors, users and others who access or use the Service.
By accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.
Links To Other Web Sites
Our Service may contain links to third-party web sites or services that are not owned or controlled by Mydomain.
Mydomain has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that Mydomain shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.
We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.
Termination
We may terminate or suspend access to our Service immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.
All provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitations of liability
Governing Law
These Terms shall be governed and construed in accordance with the laws of Indonesia, without regard to its conflict of law provisions.
Our failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.
Changes
e reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.
By continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.</textarea>
<input type="checkbox" name="tos" id="tos">
<label for="tos" class="tos">
<svg viewBox="0 0 100 100">
<path class="box" d="M79.5,83.81H20.5c-3.19,0-5.78-2.59-5.78-5.78V19.02c0-3.19,2.59-5.78,5.78-5.78H79.5
c3.19,0,5.78,2.59,5.78,5.78v59.01C85.29,81.22,82.7,83.81,79.5,83.81z" />
<polyline class="check" points="23.67,50.84 39.88,67.05 76.33,30.59 " />
</svg>
<span class="tos-label">I Agree to Terms of Agreement
</label>
<a href="step3.html" class="cta">Complete Sign Up!</a>
</div>
<div class="right-col">
<p><strong>Note: </strong>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere quidem animi
saepe provident itaque fugiat odit fuga temporibus perspiciatis at. Dolorem repudiandae delectus
voluptatem esse.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia similique explicabo omnis delectus
voluptatum tenetur illo aspernatur maiores, rerum neque.</p>
</div>
</main>
</div>
</body>
</html>