-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.09 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AskQueue</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div class="container">
<div class="app">
<header>
<h1>AskQueue</h1>
<a href="#"><h3>(How To Use)</h3></a>
</header>
<div class="questions">
<!--
<div class="question">
<div class="votes">
32
<div class="upvote">+</div>
<div class="delete">x</div>
</div>
<p>How do I math?</p>
</div>
-->
</div>
<div class="asker">
? -
<input type="text" class="input">
<button class="submit">+</button>
</div>
<footer>
<h3>Poorly hacked together by @ADotMartin.</h3>
</footer>
</div>
</div>
<div class="halp">
<h3>Askqueue (pronounced "askew")</h3>
<p>
Got a question while doing homework but not sure who to ask?
<br />
Feel like your question is too minor to interrupt lecture?
<br />
This is a simple app to help you get your questions answered!
<br />
It's anonymous, realtime and community-friendly.
<br />
Drop your question here and see how many others have the same issue.
<br />
Never forget what you meant to ask again!
</p>
<p>To add a question:</p>
<img src="img/add-q.gif" width="350" height="200">
<p>To upvote an existing question:</p>
<img src="img/upvote-q.gif">
<p>To delete a question:</p>
<img src="img/delete-q.gif">
<p>Right now, there's no security.
<br />
<strong>PLEASE DON'T DELETE QUESTIONS YOU DIDN'T ASK!</strong>
<br />
<em>Honor system. :)</em>
</p>
<p>Questions? Suggestions? Send 'em my way! <a href="http://twitter.com/ADotMartin">@ADotMartin</a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.firebase.com/js/client/2.1.1/firebase.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>