-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit.php
121 lines (89 loc) · 3.75 KB
/
submit.php
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
$title = "Submit a book";
include 'includes/header.php';
?>
<body id="top">
<div id="preloader">
<div id="loader" class="dots-fade">
<div></div>
<div></div>
<div></div>
</div>
</div>
<?php
include 'includes/navbar.php';
?>
<section class="s-content s-content--top-padding">
<div class="row">
<div class="col-full s-content__main">
<div class="row narrow">
<div class="col-full s-content__header" data-aos="fade-up">
<h1 class="display-1 display-1--with-line-sep">Submit book for review</h1>
<p class="lead">Submit the following form with correct details. Read the <a href = "s_guidelines.php"> submission guidelines</a> for more details.</p>
</div>
</div>
<div class="row entries-wrap add-top-padding wide">
<form action="includes/form_handler/book_register.php" method="post" role="form" class="form" autocomplete="off" enctype="multipart/form-data">
<div class="form-group">
<label>Book Name</label>
<input type="text" name="name" placeholder="Book Name" class="full-width" class="form-control">
</div>
<div class="form-group">
<label>Author</label>
<input type="text" name="author" placeholder="Author Name" class="full-width" class="form-control">
</div>
<div class="form-group">
<label> Author Email Address</label>
<input type="email" name="email" placeholder="E-Mail" class="full-width" class="form-control">
</div>
<div class="form-group">
<label>Genre</label>
<input type="text" name="genre" placeholder="Genre" class="full-width" class="form-control">
</div>
<div class="form-group">
<label>Synopsis</label>
<textarea name="synopsis" class="full-width" rows="8" cols="80" placeholder=""></textarea>
</div>
<div class="form-group">
<label>Author's Website</label>
<input type="text" name="website" placeholder="If you don't have a website yet , send us your main social media account link" class="full-width" class="form-control">
</div>
<div class="form-group">
<label>Amazon Link (or any other website where your book is currently selling)</label>
<input type="text" name="amazon" placeholder="Book URL" class="full-width" class="form-control">
</div>
<div class="form-group">
<label>Book launch date</label>
<input type="text" name="price" placeholder="Book launch date" class="full-width" class="form-control">
</div>
<div class="form-group">
<label>Author's Introduction</label>
<textarea name="intro" class="full-width" placeholder="Tell us about yourself."></textarea>
</div>
<div class="form-group">
<label>Are you interested in doing an author interview for The Arcadian?</label>
<select class="form-control" class="full-width" name="author_inter">
<option class="full-width">Yes</option>
<option class="full-width">No</option>
</select>
</div>
<div class="form-group">
<label for="">Book Cover Image</label>
<input type="file" name="book_image" class="form-control">
</div>
<div class="form-group">
<label>Before clicking the submit button. Read the submission guidelines.</label>
</div>
<div class="form-group">
<input type="submit" name="book_submit" value="Continue" href = "" class="submit btn btn--primary btn--large full-width">
</div>
</form>
</div> <!-- s-content__main -->
</div> <!-- end row -->
</section>
<?php
include 'includes/footer.php';
include 'includes/scripts.php';
?>
</body>
</html>