-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.php
76 lines (64 loc) · 3.25 KB
/
register.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>STUORG</title>
<!-- CSS only -->
<link rel="stylesheet" href="assets\css\bootstrap.min.css">
<link rel="stylesheet" href="assets\font-awesome-4.7.0\css\font-awesome.min.css">
<link rel="stylesheet" href="assets/css/custom.css">
<link rel="favicon" href="">
<script>
const swup = new Swup();
</script>
</head>
<body >
<div class="covers container-fluid">
<div class="containers">
<h1 id="welcome">Can't wait to have you on Stuorg</h1>
</div>
<div class="container-sm content card " style="width: 32rem; background-color: #22415f">
<h2 id="login_label">Sign Up</h2>
<div class="login_form">
<form>
<div class="mb-3">
<input type="text" class="form-control" id="singup_fname" aria-describedby="emailHelp" placeholder="First Name" required>
</div>
<div class="mb-3">
<input type="text" class="form-control" id="signup_lname" aria-describedby="emailHelp" placeholder="Last Name" required>
</div>
<div class="mb-3">
<input type="text" class="form-control" id="signup_username" aria-describedby="emailHelp" placeholder="Username" required>
</div>
<div class="mb-3">
<input type="email" class="form-control" id="signup_email" aria-describedby="emailHelp" placeholder="Username/Email" required>
</div>
<div class="mb-3">
<input type="password" class="form-control" id="signup_password" placeholder="Password" required>
</div>
<div class="mb-3">
<input type="password" class="form-control" id="confirm_password" placeholder="Confirm Password" required onchange="check_passMatch()">
</div>
<button type="submit" class="btn btn-light ">Join</button>
</form>
</div>
<div class="login_options">
<div class="row ">
<div class="col align-items-end">
<a href="index.php"> Already on Stuorg? Login. </a>
</div>
</div>
</div>
</div>
</div>
<!-- JavaScript Bundle with Popper -->
<script src="assets\js\jquery-3.6.0.js"></script>
<script src="assets\js\bootstrap.bundle.min.js"></script>
<!-- So of our own -->
<script src="assets/js/validate.js"></script>
<script src="assets/dist/swup.min.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>