-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_user.php
76 lines (76 loc) · 2.28 KB
/
new_user.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
<html>
<head>
<title>
Create New User Account
</title>
<style>
input {
border: 1.5px solid #030337;
border-radius: 4px;
padding: 7px 30px;
}
input[type=submit] {
background-color: #030337;
color: white;
border-radius: 4px;
padding: 7px 45px;
margin: 0px 135px
}
</style>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" href="font-awesome-4.7.0\css\font-awesome.min.css">
</head>
<body>
<img class="logo" src="images/shutterstock_22.jpg"/>
<h1 id="title">
IRCTC Airways </h1>
<div>
<ul>
<li><a href="home_page.php"><i class="fa fa-home" aria-hidden="true"></i> Home</a></li>
<li><a href="login_page.php"><i class="fa fa-ticket" aria-hidden="true"></i> Book Tickets</a></li>
<li><a href="home_page.php"><i class="fa fa-plane" aria-hidden="true"></i> About Us</a></li>
<li><a href="home_page.php"><i class="fa fa-phone" aria-hidden="true"></i> Contact Us</a></li>
<li><a href="login_page.php"><i class="fa fa-sign-in" aria-hidden="true"></i> Login</a></li>
</ul>
</div>
<br>
<form class="center_form" action="new_user_form_handler.php" method="POST" id="new_user_from">
<h2><i class="fa fa-user-plus" aria-hidden="true"></i> CREATE NEW USER ACCOUNT</h2>
<br>
<table cellpadding='10'>
<strong>ENTER LOGIN DETAILS</strong>
<tr>
<td>Enter a valid username </td>
<td><input type="text" name="username" required><br><br></td>
</tr>
<tr>
<td>Enter your desired password </td>
<td><input type="password" name="password" required><br><br></td>
</tr>
<tr>
<td>Enter your email ID</td>
<td><input type="text" name="email" required><br><br></td>
</tr>
</table>
<br>
<table cellpadding='10'>
<strong>ENTER CUSTOMER'S PERSONAL DETAILS</strong>
<tr>
<td>Enter your name </td>
<td><input type="text" name="name" required><br><br></td>
</tr>
<tr>
<td>Enter your phone no.</td>
<td><input type="text" name="phone_no" required><br><br></td>
</tr>
<tr>
<td>Enter your address</td>
<td><input type="text" name="address" required><br><br></td>
</tr>
</table>
<br>
<input type="submit" value="Submit" name="Submit">
<br>
</form>
</body>
</html>