-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregform.php
60 lines (58 loc) · 2.97 KB
/
regform.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
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0 ">
<title>regform</title>
<link rel="shortcut icon" HREF="images/LOG5.jpg" />
<link rel="stylesheet" href="styles/formstyle.css" />
<script src="js/jquery.js"></script>
<script src="js/register.js"></script>
</head>
<body>
<?php
include_once("header.php");
?>
<br/>
<div id="topnav">
<nav align="center">
<hr><p style="margin:2px">
<a href="index.php"><button>Home</button></a>
<a href="studentprofile.php"><button>Profile</button></a>
<a href="payments.php"><button>Payments</button></a>
<a href="booking.php"><button>Book Room?</button></a>
<a href="qallery.php"><button>Qallery</button></a>
<a href="aboutus.php"><button>About Us</button></a>
<a href="contact.php"><button>Contact Us</button></a></p><hr>
</nav></div>
<div class="sidebar1">
<ul class="nav">
<li><b><a href="index.php" id="homescript" data-remote="true" title="Homepage">Home</a></b></li>
<li><b><a href="aboutus.php" title="About Us">About Us</a></b></li>
<li><b><a href="contact.php" title="Contact Us">Contact Us</a></b></li>
<li><b><a href="studenthome.php" title="Login to View Profile, Hostel and Book Room." target="_parent">Student Module</a></b></li>
<li class="nav_label"><b><a href="admin/index.php" title="Add, Delete, Modify Hostels, Rooms, Student, School and More." target="self">Admin Module</a></b></li>
</ul>
<p align="center"><em>Apartments</em><a href="apartments.php"><img src="images/Kilwa_0084(1).jpg" alt="Insert Logo Here"
name="Insert_logo" width="180px" height="150px" id="Insert_logo"
style="background-color: #FF6666; display:block;" /></a></p><br/>
</div><br/><br/>
<form name="regform" method="POST" action="">
<p align="center"> Remember your <b>username</b> and <b>password</b> will be required during <b>login</b> </p>
<fieldset id="regform" > <img src="images/rgg.jpg" id="imagergstr" width="150px" height="130px" align="right">
<legend>Required Your Username and Password</legend>
<label for="username">Username</label><input type="text" name="username" id="username" placeholder=" Enter username" />
<span id="erruname" class="error"><img src="images/warning.png" /></span>
<label for="password">Password</label><input type="password" name="passwd" id="passwd" placeholder=" Enter password"/>
<span id="errpasswd" class="error"><img src="images/warning.png" /></span>
<label for="confirm password">Confirm Password</label><input type="password" name="Cpassword" id="Cpassword" placeholder=" Confirm password" />
<span id="errconf" class="error"><img src="images/warning.png" /></span>
<fieldset id="notify">test</fieldset>
<button id=btnreg>Register</button> <a href="studenthome.php" title="Go back to Login Page" target="_parent">Back to Login</a>
</div>
</fieldset>
</form>
</body>
<br/>
<?php
include_once("footer.php");
?>
</html>