-
Notifications
You must be signed in to change notification settings - Fork 1
/
booksyPost.template.html
68 lines (67 loc) · 3.19 KB
/
booksyPost.template.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
<template name="postBookPage">
<div class="container">
<h3>Fill in the info for the book you want to sell.</h3>
<small>The more accurate info you add, the better chance your book has to be found by fellow students!</small>
<hr class="divideMe">
<!-- This Form is for Posting books!-->
<form class="postInputGroup">
<fieldset class="form-group">
<label for="regionSelect">Select your Region</label>
<select class="form-control" id="regionSelect" name="regionSel">
<option>Halifax Region (Dalhousie, SMU, MSVU)</option>
<option>Prince Edward Island (UPEI)</option>
<option>Nova Scotia South (Acadia)</option>
<option>Nova Scotia North (ST.FX CBU)</option>
<option>New Brunswick (Moncton)</option>
<option>New Brunswick (UNB Fredericton, ST Thomas)</option>
<option>Greater Toronto Area (UofT, York University etc.)</option>
</select>
<small class="text-muted">*Required field</small>
</fieldset>
<fieldset class="form-group">
<label for="emailInput">Enter Your E-mail</label>
<input type="email" class="form-control" id="emailInput" placeholder="Your E-mail" name="email">
<small class="text-muted">e.g yourname@gmail.com (*Required)</small>
</fieldset>
<fieldset class="form-group">
<label for="bookTitleInput">Book Title</label>
<input type="text" class="form-control" id="bookTitleInput" placeholder="Book Title Here" name="bookTitle" required>
<small class="text-muted">e.g Canadian History: A Birth of a Nation (*Required)</small>
</fieldset>
<fieldset class="form-group">
<label for="bookAuthorInput">Book Author</label>
<input type="text" class="form-control" id="bookAuthorInput" placeholder="Book Author Here" name="bookAuthor" required>
<small class="text-muted">e.g Larvus Gallant (*Required)</small>
</fieldset>
<fieldset class="form-group">
<label for="bookPriceInput">Book Price</label>
<input type="number" class="form-control" id="bookPriceInput" placeholder="Book Price Here" name="bookPrice" required>
<small class="text-muted">e.g 40 (*Required)</small>
</fieldset>
<!-- <fieldset class="form-group">
<label for="selectFile">Image of Book</label>
<input type="file" class="myFileInput">
<p class="help-block">Upload a photo of your book here.</p>
</fieldset> -->
<fieldset class="form-group">
<label for="isbnInput">ISBN Number</label>
<input type="text" class="form-control" id="isbnInput" placeholder="Book Title Here" name="isbn">
<small class="text-muted">Be as accurate as possible for best results</small>
</fieldset>
<fieldset class="form-group">
<label for="tagSelect">Add Subject Tag (Optional)</label>
<select class="form-control" id="tagSelect" name="tag">
<option>None</option>
<option>English</option>
<option>History</option>
<option>Mathematics</option>
<option>Engineering</option>
<option>Music</option>
<option>Geography</option>
</select>
<small class="text-muted">Enables you to search by subject</small>
</fieldset>
<input type="submit" id="submit" class="pull-right submitButtonStyle">
</form>
</div>
</template>