forked from Bharat-Reddy/Hostel-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
113 lines (103 loc) · 4.81 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<title>SIGNUP PAGE</title>
<!-- meta tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="Art Sign Up Form Responsive Widget, Audio and Video players, Login Form Web Template, Flat Pricing Tables, Flat Drop-Downs, Sign-Up Web Templates,
Flat Web Templates, Login Sign-up Responsive Web Template, Smartphone Compatible Web Template, Free Web Designs for Nokia, Samsung, LG, Sony Ericsson, Motorola Web Design"
/>
<!-- /meta tags -->
<!-- custom style sheet -->
<link href="web/css/style.css" rel="stylesheet" type="text/css" />
<!-- /custom style sheet -->
<!-- fontawesome css -->
<link href="web/css/fontawesome-all.css" rel="stylesheet" />
<!-- /fontawesome css -->
<!-- google fonts-->
<link href="//fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet">
<!-- /google fonts-->
</head>
<body>
<h1>Hostel Room Allocation System</h1>
<div class=" w3l-login-form">
<h2>Sign Up Here</h2>
<form action="includes/signup.inc.php" method="POST">
<div class=" w3l-form-group">
<label>Student Roll No</label>
<div class="group">
<i class="fas fa-id-badge"></i>
<input type="text" class="form-control" name="student_roll_no" placeholder="Roll No" required="required" />
</div>
</div>
<div class=" w3l-form-group">
<label>First Name</label>
<div class="group">
<i class="fas fa-user"></i>
<input type="text" class="form-control" name="student_fname" placeholder="First Name" required="required" />
</div>
</div>
<div class=" w3l-form-group">
<label>Last Name</label>
<div class="group">
<i class="fas fa-user"></i>
<input type="text" class="form-control" name="student_lname" placeholder="Last Name" required="required" />
</div>
</div>
<div class=" w3l-form-group">
<label>Mobile No</label>
<div class="group">
<i class="fas fa-phone"></i>
<input type="text" class="form-control" name="mobile_no" placeholder="Mobile No" required="required" />
</div>
</div>
<div class=" w3l-form-group">
<label>Department</label>
<div class="group">
<i class="fas fa-graduation-cap"></i>
<input type="text" class="form-control" name="department" placeholder="Department" required="required" />
</div>
</div>
<div class=" w3l-form-group">
<label>Year of Study</label>
<div class="group">
<i class="fas fa-calendar"></i>
<input type="text" class="form-control" name="year_of_study" placeholder="Year of Study" required="required" />
</div>
</div>
<!-- <div class=" w3l-form-group">
<label>Email:</label>
<div class="group">
<i class="fas fa-envelope"></i>
<input type="text" class="form-control" name="mail" placeholder="Email" required="required" />
</div>
</div>-->
<div class=" w3l-form-group">
<label>Password:</label>
<div class="group">
<i class="fas fa-unlock"></i>
<input type="password" class="form-control" name="pwd" placeholder="Password" required="required" />
</div>
</div>
<div class=" w3l-form-group">
<label>Confirm Password:</label>
<div class="group">
<i class="fas fa-unlock"></i>
<input type="password" class="form-control" name="confirmpwd" placeholder="Confirm Password" required="required" />
</div>
</div>
<!--<div class="forgot">
<a href="#">Forgot Password?</a>
<p><input type="checkbox">Remember Me</p>
</div>-->
<button type="submit" name="signup-submit">Sign Up</button>
</form>
<p class=" w3l-register-p">Already a member?<a href="index.php" class="register"> Login</a></p>
</div>
<footer>
<p class="copyright-agileinfo"> © 2018 DBMS Project. All Rights Reserved | Design by <a href="https://www.linkedin.com/in/bharat-reddy/">Bharat-Prajwal-Rakesh</a></p>
</footer>
</body>
</html>