-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.php
25 lines (25 loc) · 854 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
<!DOCTYPE html>
<html>
<head>
<title>SignUp Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<h1>SignUp Page</h1>
<div class="container">
<form action="process_signup.php" method="POST" novalidate>
<input autocomplete="off" type="username" placeholder="Username" name="username">
<br><br>
<input autocomplete="off" type="email" placeholder="Email" name="email">
<br><br>
<input autocomplete="off" type="password" placeholder="Password" id="password" name="password">
<br><br>
<input autocomplete="off" type="password" placeholder="Confirm Password" id="confirm_password" name="confirm_password">
<br><br>
<button>SignUp</button>
</form>
</div>
</body>
</html>