-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (27 loc) · 1.09 KB
/
index.html
File metadata and controls
36 lines (27 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Password Checker</title>
</head>
<body bgcolor="lightblue">
<center><h2>Password Strength Checker</h2>
<p> Sign up and check out your password strength game.<br>
Can you make a 100% strong password? <br>
Find out now!
</p>
</center>
<h3><center>Sign Up</h3></center>
<form method="post" action="connect.php" >
<center><label for="">Username:</label><br>
<center><input type="text" placeholder="Username" name="name" required></center><br>
<center><label for="">Email:</label><br>
<center><input type="email" placeholder="Email" name="email" ></center><br>
<center><label for="">Password:</label><br>
<center><input type="password" placeholder="Password" name="password_1" required ></center><br>
<center><label for="">Confirm Password:</label><br>
<center><input type="password" placeholder="Confirm Password" name="password_2" required ></center><br>
<center><input type="submit" style="background-color: purple;color:white;width:150px;height: 40px;" value="Sign Up"><br><br>
Already a member? <a href="sign in.html">Sign in</a>
</form>
</body>
</html>