-
Notifications
You must be signed in to change notification settings - Fork 1
/
registration.html
27 lines (25 loc) · 1.32 KB
/
registration.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- required to handle IE -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>User Registration</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="activity-styles.css" />
</head>
<body>
<div>
<h1>User Registration</h1>
<form action="register.php" method="post">
First name: <input type="text" id="fname" name="fname" required /><br/>
Last name: <input type="text" id="lname" name="lname" required /><br/>
Username: <input type="text" id="uname" name="uname" required /><br/>
Password: <input type="password" id="pwd" name="pwd" required /><br/>
Admin: <input type="checkbox" id="isAdmin" name="isAdmin" value="1"><br>
<input type="submit" value="Submit" class="btn" />
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>