-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_user_form.html
36 lines (27 loc) · 1.28 KB
/
new_user_form.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
28
29
30
31
32
33
34
35
36
<html>
<head>
<title>RAILWAY RESERVATION SYSTEM</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
</head>
<body class=home>
<div id="container">
<nav class="navbar navbar-expand-lg navbar-dark bg-black">
<a class="navbar-brand" id="n">Railway Management System</a>
</nav>
</div>
<div class="jr">
<form action="new_user_form.php" method="post">
<div align="center"><label for="fname"><h2>Kindly enter your credentials!!!</h2></label>
<br>
<br><br> <label>E-mail ID:</label><input type="text" name="emailid" required>
<br><br> Password: </label><input type="password" name="password" required>
<br><br> Mobile No.:</label><input type="text" name="mobileno" required>
<br><br> dob: </label><input type="date" name="dob" required><br><br>
<input type="submit" value="Save"><br><br>
<a href="index.htm">Home Page</a>
</div>
</form>
</div>
</body>
</html>