-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
42 lines (40 loc) · 1.59 KB
/
forms.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
<!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="style.css">
<title>Sign Up</title>
</head>
<body>
<form id="myForm" class="myForm" >
<div class="container">
<p>Please Sign Up First!</p>
<div class="form">
<label for="username">Username</label>
<input type="text" name="username" id="input" placeholder="Enter Username" required>
</div >
<div class="form">
<label for="email">Email</label>
<input type="text" name="email" id="input" placeholder="Enter Email" required>
</div >
<div class="form">
<label for="password">Password</label>
<input type="password" name="password" id="input" placeholder="Enter password" required>
</div>
<div class="form">
<label for="password">Password</label>
<input type="password" name="password" id="input" placeholder="Repeat password" required>
</div>
<div id="check">
<label class="checklogin">
<div class="container-btn">
<button class="cancelbtn">Cancel</button>
<button type="submit" class="signup">Submit</button>
</div>
<p class="levi">By creating an account you agree to our <a href="#">Terms & Privacy</a>.</p>
</div>
</form>
<script src="./app.js"></script>
</body>
</html>