-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.95 KB
/
Copy pathindex.html
File metadata and controls
49 lines (49 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body class="main">
<div class="background">
<img src="./assets/background.png" class="backgroundImg">
</div>
<div class="flex-container">
<div class="intro">
Hey everyone, welcome to my Signup Form Project, Feel free to try it out.
</div>
<form action="#">
<div class="form">
<div class="input">
<label for="first-name">First Name</label>
<input type="text" name="first-name" id="first-name" required>
</div>
<div class="input">
<label for="last-name">Last Name</label>
<input type="text" name="last-name" id="last-name" required>
</div>
<div class="input">
<label for="email">Email</label>
<input type="email" name="email" id="email" required>
</div>
<div class="input">
<label for="number">Number</label>
<input type="text" name="number" id="number" required>
</div>
<div class="input">
<label for="email">Password</label>
<input type="password" name="Password" id="Password" required>
</div>
<div class="input">
<label for="confirm-password">Confirm Password</label>
<input type="password" name="confirm-password" id="confirm-password" required>
</div>
<div class="left button"><button type="submit">Create Account</button></div>
</div>
</form>
</div>
</body>
</html>