-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_insp.html
42 lines (39 loc) · 1.3 KB
/
add_insp.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
<!DOCTYPE html>
<html>
<head>
<title>Add content</title>
<link rel="icon" href="bulb.png" type="image/x-icon"/>
<script src=jquery-1.7.1.js></script>
<script src="addInspScript.js"></script>
<link rel="stylesheet" type="text/css" href="skeleton.css">
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1>Add new inspiration</h1>
<div id="confirmation"></div>
<form action="/" id="addContent">
<div>
<label >Content (text or a link to an image)</label>
Tip: you can use imgur to upload a picture and get a url
<textarea name="content" class="u-full-width"></textarea>
</div>
<div>
<label>Type of content:</label>
<label>
<input type="radio" name="content-type" value="text" checked> <span class="label-body">Text</span>
</label>
<label>
<input type="radio" name="content-type" value="image"> <span class="label-body">Image</span>
</label>
</div>
<div>
<input type="submit" class="button-primary submit-button" value="add inspiration">
<a class="button" href="mass_view.html">View all inspiration</a>
<a class="button" href="newtab.html">Go back</a>
</div>
</form>
</div>
</body>
</html>