-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
50 lines (38 loc) · 1.5 KB
/
signup.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
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Page</title>
<link rel="stylesheet" href="css/log.css">
</head>
<body>
<div class="signup-container">
<h2>Sign Up</h2>
<form action="http://localhost/php_try/process_signup.php" method="POST">
<div class="input-group">
<label for="username">Userid:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
</div>
<div class="input-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="input-group">
<label for="firstname">First Name:</label>
<input type="text" id="firstname" name="firstname" required>
</div>
<div class="input-group">
<label for="lastname">lastname:</label>
<input type="text" id="lastname" name="lastname" required>
</div>
<button type="submit">Sign Up</button>
</form>
<p>Already have an account? <a href="lgin.html">Login</a></p>
</div>
</body>
</html>