-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.php
42 lines (36 loc) · 845 Bytes
/
signup.php
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-us">
<head>
<title>Password Manager</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="project.css">
</head>
<body>
<div class="welcome">
WELCOME TO PASSWORD MANAGER</div>
<div>
<h2 style="color: blue">Sign Up</h2>
<form action="signingup.php" method="post">
<p>
<label>Username:</label><br>
<input type="text" name="user" />
</p>
<p>
<label>Email:</label><br>
<input type="text" name="email" />
</p>
<p>
<label>Password</label><br>
<input type="Password" name="pass" />
</p>
<p>
<label>Confirm Password</label><br>
<input type="Password" name="pass2" />
</p>
<p>
<input type="submit" name="regbtn" value="Register" />
</p>
</form>
</div>
</body>
</html>