-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsignup.php
77 lines (62 loc) · 2.06 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
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
77
<?php include('server.php') ?>
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Registration | SNTL Airlines</title>
<link rel="icon" href="img/icon.png">
<link href="styles.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="background_contain">
<div id="menubar-id">
<div class="menubar-class">
<a href="index.php"><img id="menu_logo" src="img/logo.png"/></a>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="status.php">Flight Status</a></li>
<li><a href="reservation.php">Reservations</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div id="menubar_space">
</div>
<div id="login_space">
</div>
<div class="quick_book">
<h3 id="booking_header">Register</h3>
<form method="post" action="signup.php">
<?php include('errors.php'); ?>
<div class="input-group">
<label>Username</label>
<input type="text" name="username" value="<?php echo $username; ?>">
</div><br>
<div class="input-group">
<label>Email</label>
<input type="email" name="email" value="<?php echo $email; ?>">
</div><br>
<div class="input-group">
<label>Password</label>
<input type="password" name="password_1">
</div><br>
<div class="input-group">
<label>Confirm password</label>
<input type="password" name="password_2">
</div><br>
<div class="input-group">
<button id="search" type="submit" class="btn" name="reg_user">Register</button>
</div>
<p>
Already a member? <a href="login.php">Sign in</a>
</p>
</form>
</div>
</div>
</div>
<div class="footer">
<p>CSE311 | This website is made with 💓 by Syed, Nafis, Tamanna & Lamia</p>
</div>
</body>
</html>