-
Notifications
You must be signed in to change notification settings - Fork 3
/
newpost.html
73 lines (73 loc) · 2.62 KB
/
newpost.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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet" type="text/css">
<title>Bootstrap Real Estate Website Template</title>
<link rel="stylesheet" href="css/bootstrap.css">
</head>
<body>
<form method="post" class="basic-grey" enctype="multipart/form-data" name="form1" id="form1" action="postadd.php">
<table width="377" border="0" align="center">
<tbody>
<tr>
<td colspan="2" class="Text">Hi User, Enter Your Goal</td>
</tr>
<tr>
<td width="88"><span id="dollar">$:</span></td>
<td width="525"><input type="text" name="cash" id="cash" style="height:80px; width:300px;"></td>
</tr>
<tr>
<td colspan="2" class="Text">My Campaign Title <br><br></td>
</tr>
<tr>
<td colspan="2"><input type="text" name="title" id="title" placeholder="Example: Susie's Medical Fund or My Volunteer Trip"><br></td>
</tr>
<tr>
<td colspan="2" class="Text">Category<br><br></td>
</tr>
<tr>
<td colspan="2"><select align="center" name="select" id="select" default="Chosse One">
<option value="Emergency" disabled selected>SELECT ONE</option>
<option value="Emergency">Emergency</option>
<option value="Medical">Medical</option>
<option value="Volunteer">Volunteer</option>
<option value="Education">Education</option>
<option value="Sports">Sports</option>
<option value="Memorials">Memorials</option>
</select><br></td>
</tr>
<tr>
<td colspan="2" class="Text">Country<br><br></td>
</tr>
<tr>
<td colspan="2"><input type="text" name="loc" id="loc" placeholder="Enter your country..."><br></td>
</tr>
<tr>
<td colspan="2" class="Text">Upload Image<br><br></td>
</tr>
<tr>
<td height="27" colspan="2"><input type="file" name="file" id="file"><br><br><br></td>
</tr>
<tr>
<td colspan="2" class="Text">Description<br><br></td>
</tr>
<tr>
<td colspan="2"><textarea name="textarea" id="textarea" cols="100" rows="30" placeholder="Enter your complete description here"></textarea><br></td>
</tr>
<tr>
<td colspan="2" align="center"><input align="center" type="submit" name="submit" id="submit" value="Submit" width="50px"></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</tbody>
</table>
</form>
</body>
</html>