-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinput.html
More file actions
66 lines (66 loc) · 2.58 KB
/
input.html
File metadata and controls
66 lines (66 loc) · 2.58 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/vendor/styles/normalize.css" type="text/css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<title>Input Page</title>
</head>
<body>
<h1>Input Your Own Resources</h1>
<form>
<fieldset class="form-group">
<label for="url">URL</label>
<input type="text" class="form-control" id="url" name="url">
</fieldset>
<fieldset class="form-group">
<label for="title">Title</label>
<input type="text" class="form-control" id="title" name="title">
</fieldset>
<fieldset class="form-group">
<label for="contentPage">contentPage</label>
<input type="text" class="form-control" id="contentPage" name="contentPage">
</fieldset>
<fieldset class="form-group">
<label for="category">Category</label>
<input type="text" class="form-control" id="category" name="category">
</fieldset>
<fieldset class="form-group">
<label for="subcategory">Subcategory</label>
<input type="text" class="form-control" id="subcategory" name="subcategory">
</fieldset>
<fieldset class="form-group">
<label for="mainContent">mainContent</label>
<textarea name="mainContent" class="form-control" id="mainContent"></textarea>
</fieldset>
<fieldset class="form-group">
<label for="description">Description</label>
<textarea name="description" class="form-control" id="description"></textarea>
</fieldset>
<fieldset class="form-group">
<label for="author">Author</label>
<input type="text" class="form-control" id="author" name="author">
</fieldset>
<fieldset class="form-group">
<label for="date">Date</label>
<input type="text" class="form-control" id="date" name="date">
</fieldset>
<fieldset class="form-group">
<label for"image">Image</label>
<input type="text" class="form-control" id="image" name="imageUrl">
</fieldset>
<button>submit</button>
</form>
<br>
<p>
Plain text JSON area:
</p>
<section id="jsonArea">
</section>
<script src="/vendor/jquery-2.1.4.min.js"></script>
<script src="/vendor/bootstrap.min.js"></script>
<script src="/scripts/resource.js"></script>
<script src="/scripts/input.js"></script>
</body>
</html>