-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sing up Form</title>
<link rel="stylesheet" href="styles.css">
<script src="index.js"></script>
</head>
<body>
<img src="image.jpeg" alt="random image" />
<form>
<h1>Form Title</h1>
<div class="h-grid">
<div>
<label for="first-name">First name</label>
<input id="first-name" type="text" required />
</div>
<div>
<label for="last-name">Last name</label>
<input id="last-name" type="text" />
</div>
</div>
<div class="h-grid">
<div>
<label for="email">Email</label>
<input id="email" type="email" required />
</div>
<div>
<label for="phone-number">Phone number</label>
<input id="phone-number" type="tel" />
</div>
</div>
<div class="h-grid">
<div>
<label for="password">Password</label>
<input id="password" type="password" onchange="onChange()" required />
</div>
<div>
<label for="confirm-password">Confirm password</label>
<input id="confirm-password" type="password" onChange="onChange()" required />
</div>
</div>
<input id="submit" type="submit" value="Create account" />
</form>
</div>
</body>
</html>