forked from sf-mud-turtles-2015/spa-badge
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsample-page.html
88 lines (80 loc) · 2.55 KB
/
sample-page.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="js/app.js"></script>
<title>SPABadge</title>
</head>
<body>
<div class="container">
<div class="logo">
<h1> SPA Badge </h1>
</div>
<h1>Words To Be Remembered By</h1>
<div class="show-user">
<h2> Walker's Badges </h2>
<div id="1" class="slogan">
<div class="body">1) DBC Guru</div>
<div class="vote-on">
<form action="#">
<input type="hidden" name="slogan_id" value=1>
<input type="hidden" name="vote_type" value="up">
<button class="up" type="submit" name="submit">
<img src="img/upvote.gif" alt="upvote_image" />
</button>
</form>
</div>
<div class="vote-on">
<form action="#">
<input type="hidden" name="slogan_id" value=1>
<input type="hidden" name="vote_type" value="down">
<button class="down" type="submit" name="submit">
<img src="img/downvote.gif" alt="downvote_image" />
</button>
</form>
</div>
<div class="points">
(25 points)
</div>
</div>
<div id="2" class="slogan">
<div class="body">2) Most likely to do a handstand</div>
<div class="vote-on">
<form action="#">
<input type="hidden" name="slogan_id" value=1>
<input type="hidden" name="vote_type" value="up">
<button class="up" type="submit" name="submit">
<img src="img/upvote.gif" alt="upvote_image" />
</button>
</form>
</div>
<div class="vote-on">
<form action="#">
<input type="hidden" name="slogan_id" value=1>
<input type="hidden" name="vote_type" value="down">
<button class="down" type="submit" name="submit">
<img src="img/downvote.gif" alt="downvote_image" />
</button>
</form>
</div>
<div class="points">
(15 points)
</div>
</div>
<div class="add-badge">
<h3> Add a Badge: </h3>
<form action="#">
<input type="hidden" name="user_id" value="5" />
<input type="text" name="content" />
<input type="image" src="img/add_button.png" alt="Add Slogan" />
</form>
</div>
</div>
<div class="nav">
<span class="nav-link">
<a href="spa-badge.html"> HOME </a>
</span>
</div>
</div>
</body>
</html>