-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (77 loc) · 2.65 KB
/
index.html
File metadata and controls
83 lines (77 loc) · 2.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Zuri Training | Intro component with sign up form</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div>
<h1>
Hi There!
<br />
Welcome, Please Fill In The Form
</h1>
<button type="submit" class="box-blue" onclick="openForm()">
Open Form
</button>
</div>
<br>
<div>
<form class="box" id="form">
<div class="form-control">
<input type="text" id="username" placeholder="User Name" autocapitalize="on" autocomplete="off"/>
<img src="./images/icon-error.svg" alt="error-icon" />
<small></small>
</div>
<div class="form-control">
<input type="tel" id="telephone" placeholder="Phone Number" autocapitalize="on" autocomplete="off"/>
<img src="./images/icon-error.svg" alt="error-icon" />
<small></small>
</div>
<div class="form-control">
<input type="email" id="email" placeholder="Email Address" autocapitalize="on" autocomplete="off"/>
<img src="./images/icon-error.svg" alt="error-icon" />
<small></small>
</div>
<div class="form-control">
<input type="password" id="password" placeholder="Password" autocomplete="off"/>
<img src="./images/icon-error.svg" alt="error-icon" />
<small></small>
</div>
<div class="form-control">
<input type="password" id="confirmPassword" placeholder="Confirm Password" autocomplete="off"/>
<img src="./images/icon-error.svg" alt="error-icon" />
<small></small>
</div>
<button onclick="displayDetails(); closeForm();" >Submit Details</button><br />
<small>
By clicking the button, you are agreeing to our
<a href="#">Terms and Services</a>
</small>
</form>
</div>
<div class="box" id="details">
<h1>User Details</h1>
<h3 id="user"></h3>
<h3 id="tel"></h3>
<h3 id="emailadd"></h3>
<br>
<button type="submit" class="cancel" onclick="hide()">
Hide User Details
</button>
<br>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>