-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (113 loc) · 3.78 KB
/
index.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<title>NashTech</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div id="loader" class="loader"></div>
<section>
<div id="main">
<div id="leftDiv">
<div id="sampleheading">
<h1 style="font-size: 2.5rem">Sample Heading</h1>
<!-- <p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Error,
et, aut cumque doloremque laboriosam qui nobis nam officia itaque,
temporas quas?
</p> -->
<div class="gridContainer" style="margin-top: 40px">
<div class="one">Grid Item 1. Lorem dolor sit.</div>
<div class="two">Grid Item 2. Dolor sit amet.</div>
<div class="three">Grid Item 3. Ipsum dolor.</div>
</div>
</div>
</div>
<div id="rightDiv">
<form class="login" id="login">
<h2><b>Create Account</b></h2>
<br />
<div class="field">
<label for="email"><b>Enter your email</b></label>
<input name="email" id="email" type="email" required />
<div
style="font-size: 0.7rem; color: red"
class="error-message"
id="emailError"
></div>
</div>
<div class="field">
<label for="DOB"
><b
>Date Of Birth
<span style="font-size: 0.7rem">(Optional)</span></b
></label
><br />
<input type="date" name="DOB" id="DOB" max="" />
<div
style="font-size: 0.7rem; color: red"
class="error-message"
id="dobError"
></div>
</div>
<div class="field">
<label for="password"> <b>Choose a strong password </b></label>
<input name="password" type="password" id="password" required />
<div
style="font-size: 0.7rem; color: red"
class="error-message"
id="passError"
></div>
</div>
<div class="field">
<p><b>Are you an agency od individual?</b></p>
<input
type="radio"
name="accType"
value="agency"
id="agency"
style="cursor: pointer"
/>
<label for="agency" style="padding-right: 2rem">Agency</label>
<input
type="radio"
name="accType"
value="individual"
id="individual"
style="cursor: pointer"
/>
<label for="individual">Individual</label>
<div
style="font-size: 0.7rem; color: red"
class="error-message"
id="accTypeError"
></div>
</div>
<button
type="button"
style="
width: 12rem;
background-color: rgb(70, 170, 220);
width: 48%;
color: white;
"
class="btn"
onclick="console.log('submitted')"
>
<b>Submit</b>
</button>
</form>
</div>
</div>
</section>
</body>
</html>