-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
39 lines (37 loc) · 1.31 KB
/
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
<!-- signup.php -->
<!DOCTYPE html>
<html>
<head>
<title>Signup Page</title>
<link rel="icon" type="image/png" href="https://example.com/path/to/your-icon.png">
<!-- Include Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
.container {
max-width: 400px;
margin: 0 auto;
margin-top: 100px;
}
</style>
</head>
<body>
<div class="container">
<h2 class="text-center mb-4">Signup</h2>
<form action="signup_process.php" method="POST">
<div class="form-group">
<label for="username">Username:</label>
<input type="text" class="form-control" name="username" id="username" required>
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" name="password" id="password" required>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary">Signup</button>
</div>
</form>
</div>
<!-- Include Bootstrap JS -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>