-
Notifications
You must be signed in to change notification settings - Fork 0
/
cms.html
30 lines (28 loc) · 889 Bytes
/
cms.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link type="text/css" rel="stylesheet" href="css/global.css"/>
</head>
<body>
<div id="wrapborder">
<div id="header">
<h1>Election CMS</h1>
</div>
<div id="topcontent"></div>
<div class="clearfix container content_frame" style="padding:16px;">
<form action="cms.php" method="post" enctype="multipart/form-data">
<p>
<Input type ='Radio' Name ='type' value= 'president'>President
<Input type ='Radio' Name ='type' value= 'house'>House
</p>
<p>
<label for="csv">CSV:</label><input type="file" id="csv" name="csv" />
</p>
<input type="submit" name="submit" value="Submit">
</div>
</div>
<div class="content_footer"></div>
</div>
</body>
</html>