-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_ob.php
58 lines (49 loc) · 1.82 KB
/
add_ob.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
<?php require_once("includes/ses.php"); ?>
<?php require_once("includes/header.php"); ?>
<?php require_once("includes/nav.php"); ?>
<?php require("includes/news.php"); ?>
<!-- end of side column -->
<div id="templatemo_main_column">
<a href="home.php"><div id="disp_name">
<?php echo $val;?>
</div></a>
<div class="main_column_box">
<div class="cleaner_h80"></div>
<h3 id="topic1"><span></span>Obituaries</h3>
<img id="image1" class="image_wrapper fl_image" src="images/lf1.jpg" alt="image" style="height: 50%;width: 50%;"/>
<p class="em_text" id="desc1">This Portal is mainly for paying respects to the people who passed away during a Natural Disaster.</p>
<div class="cleaner"></div>
<form action="lf_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>
</tr>
<tr>
<td><h4>Age</h4></td>
<td><input type="number" name="age" min="1"/></td>
</tr>
<tr>
<td><h4>Gender</h4></td>
<td><input type="radio" name="gender" value="M" style="width: auto;"/>Male<br>
<input type="radio" name="gender" value="F" style="width: auto;"/>Female
</td>
</tr>
<td><h4>Disaster</h4></td>
<td><input type="text" name="disaster"/></td>
</tr>
<tr>
<td><h4>Message</h4></td>
<td><textarea cols="40" rows="5" name="area"></textarea></td>
</tr>
</table>
<input type="submit" style="width: auto;">
<input type="reset" style="width: auto;">
</form>
</div>
</div>
<div class="cleaner"></div>
<div id="top"></div>
<div id="bottom"></div>
</div>
<?php require("includes/footer.php"); ?>