-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_reg.php
96 lines (79 loc) · 3.14 KB
/
user_reg.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
<?php require_once("includes/header.php"); ?>
<div id="templatemo_menu">
<ul>
<li><a href="index.php?id=1" class="current">Homepage</a></li>
<li><a rel="nofollow" href="login.php?id=1" >Login</a></li>
<li><a href="user_reg.php">User Registration</a></li>
<li><a href="contact.php">Contact Information</a></li>
</ul>
</div> <!-- end of menu -->
<div class="cleaner"></div>
<div class="box">
<h3><span></span>News</h3>
<img src="images/nd1.jpg" alt="image" />
<div class="news_title"><a href="#"> Mudslides Explained: Behind the Washington State Disaster</a></div>
<p>A fatal mudslide in rural northwestern Washington State over the weekend underscores the dangers of this fast-moving natural hazard.</p>
<div class="cleaner"></div>
<img src="images/nd2.jpg"/>
<div class="news_title"><a href="http://www.huffingtonpost.com/2014/03/26/extreme-weather-natural-disasters-insurance-losses_n_5033351.html">Extreme Weather, Natural Disasters Led To $45 Billion In Insurance Losses In 2013</a></div>
<p>GENEVA (AP) — Disasters such as floods in Europe, winter storms in the U.S. and typhoons in Asia cost insurance companies $45 billion in 2013, a leading Swiss firm said Wednesday.</p>
</div>
</div> <!-- end of side column -->
<div id="templatemo_main_column">
<div class="main_column_box">
<div class="cleaner_h80"></div>
<h3><span></span>User Registration Form</h3>
<form action="user_update.php" method="post">
<table border="1" style="width: 85%;padding: 10px;">
<tr>
<td><h4>Name : </h4></td>
<td><input type="text" name="name" /></td>
<td class="err"></td>
</tr>
<tr>
<td><h4>Password : </h4></td>
<td><input type="password" name="pass"/></td>
<td class="err"></td>
</tr>
<tr>
<td><h4>Date of Birth : </h4></td>
<td><input type="date" name="dob"/></td>
<td class="err"></td>
</tr>
<tr>
<td><h4>Username : </h4></td>
<td><input type="text" name="uname"/></td>
<td class="err"></td>
</tr>
<tr>
<td><h4>Email : </h4></td>
<td><input type="email" name="email"/></td>
<td class="err"></td>
</tr>
<tr>
<td><h4>Contact No : </h4></td>
<td><input type="text" name="contact"/></td>
<td class="err"></td>
</tr>
<tr>
<td><h4>Emergency Contact No : </h4></td>
<td><input type="text" name="emergency"/></td>
<td class="err"></td>
</tr>
<tr>
<td><h4>Address : </h4></td>
<td><textarea cols="40" rows="5" name="addr"/></textarea>
<td class="err"></td>
</tr>
</table>
<input type="submit" style="width: auto;" >
<input type="reset" style="width: auto;" >
</form>
<div class="cleaner_h30"></div>
</div>
</div>
<div class="cleaner"></div>
<div id="top"></div>
<div id="bottom"></div>
</div>
<?php require("includes/footer.php"); ?>