-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrequest.php
More file actions
41 lines (39 loc) · 1.61 KB
/
request.php
File metadata and controls
41 lines (39 loc) · 1.61 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
<?php
include("include/header.php");
include("include/config.php");
include("form.php");
?>
<?php echo $alert; ?>
<div class="container">
<div class="container center">
<form action="" method="post">
<h3>Request A Book</h3>
<div class="input-field">
<i class="material-icons prefix">contacts</i>
<input type="text" class="contacts" name="name" placeholder="Your Name">
</div>
<div class="input-field">
<i class="material-icons prefix">email</i>
<input type="email" class="email" name="email" placeholder="Your Email" required>
</div>
<div class="input-field">
<i class="material-icons prefix">book</i>
<input type="text" class="title" name="title" placeholder="Book Title">
</div>
<div class="input-field">
<i class="material-icons prefix">contacts</i>
<input type="text" class="author" name="author" placeholder="Book Author">
</div>
<button class="btn waves-effect waves-light blue-grey darken-1" type="submit" name="submit">Request
</button>
</form>
</div>
</div>
<script type="text/javascript">
if(window.history.replaceState){
window.history.replaceState(null, null, window.location.href);
}
</script>
<?php
include("include/footer.php");
?>