-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
41 lines (40 loc) · 1.94 KB
/
register.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
37
38
39
40
41
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Routing Application</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="css/register.css" />
<script type="text/javascript" src="js/register.js"></script>
</head>
<body bgcolor="#000000">
<table width="100%" border="0" id="topmenu">
<tr>
<td width="497" height="57" class="header"><img src="images/logo.png" id="logo"></td>
<td width="70" class="topmenu"><a href="home.html">Home</a></td>
<td width="70" class="topmenu"><a href="documentation.html">Documentation</a></td>
<td width="70" class="topmenu"><a href="support.html">Support</a></td>
<td width="70" class="topmenu"><a href="login.html">Login</a></td>
</tr>
<tr>
<td colspan="6" class="my_body2">
<section class="login">
<div class="title">SIGN UP</div>
<form action="register.php" method="post" onsubmit="return myFunction()" >
<input type="text" name="myusername" required title="Username required" placeholder="Username">
<input id="pass1" type="password" name="mypassword" required title="Password required" placeholder="Password">
<input id="pass2" type="password" name="mypassword" required title="Password required" placeholder="Verify Password">
<input type="email" name="myemail" required title="Email required" placeholder="Email"><br /><br />
<input type="submit" value="SIGN UP">
</form>
<p align="center">Already a member?</p>
<a href="login.html" type="button">LOGIN</a>
</section>
</td>
</tr>
<tr>
<td height="67" colspan="6" class="footer"><p>© All Rights Reserved<br>Iinstitute of Geographical Information System </p></td>
</tr>
</table>
</body>
</html>