-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront_end.html
70 lines (70 loc) · 1.86 KB
/
front_end.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
<html>
<!--
Copyright (c) 2013 Anthony Bau
MIT License: http://opensource.org/licenses/MIT
-->
<head>
<title>ECC Idea Forum</title>
<link rel="stylesheet" href="file/front_end.css"/>
<link rel="icon" href="file/favicon.ico"/>
<script src="file/jquery.min.js"></script>
<script src="file/jquery.fineuploader-3.3.1.min.js"></script>
<script src="file/iframe.xss.response-3.3.1.js"></script>
<script src="file/front_end.js"></script>
</head>
<body>
<div id="bar">
<div class="toolbar">
Exeter Computing Club Idea Forum
</div>
</div>
<div id = "top">
<div id = "main">
<div id="main_header">
</div>
<div id="main_body">
</div>
<div id="votey">
<div id="before_upload">
<button id="upvote">↑ <span id="upvote_number"></span></button>
<button id="downvote">↓ <span id="downvote_number"></span></button>
</div>
<div id="upload"></div>
<div id="prototypes"></div>
</div>
</div>
<div id = "panel">
<div>
<input id="name" value="title"/>
</div>
<div>
<textarea id="description">description</textarea>
</div>
<button id="submit_button">
submit
</button>
</div>
</div>
<div id = "bottom">
<div id = "order_by">
<div id = "sort">
sort by
</div>
<div id = "order_time" class = "order selected_order">
time
</div>
<div id = "order_votes" class = "order">
votes
</div>
<div id = "order_alphabetic" class = "order">
alphabetic
</div>
<div id = "order_code" class = "order">
proof-of-concept
</div>
</div>
<div id = "items">
</div>
</div>
</body>
</html>