-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter_details.html
66 lines (55 loc) · 2.52 KB
/
chapter_details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chapter details</title>
<script src="./node_modules/web3/dist/web3.min.js"></script>
<style>
img {
position: absolute;
size: cover;
z-index: -1;
opacity: 0.8;
width: 100%;
height: 100%;
}
</style>
<!--cookie font-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link href="https://fonts.googleapis.com/css?family=Cookie" rel="stylesheet">
<!--bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--materialize-->
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<script src = "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js">
</script>
</head>
<body>
<img src="views/a1.jpg"></img>
<div class = "col s12 m12 l12">
<nav>
<div class = "nav-wrapper #880e4f black darken-3">
<p class = "brand-logo left" style="font-family: Cookie; font-size: 50px;"> Autobioscrypt</p>
<ul id = "nav-mobile" class = "right hide-on-med-and-down">
<li><a href = "http://localhost:3000/link_to_book_details">Start new Book</a></li>
<li> <a href="http://localhost:3000/browse">Browse Books</a></li>
<li><a href = "http://localhost:3000/logout">Logout</a></li>
</div>
</nav>
</div>
<center>
<br><br><br>
<h1 style="font-family: Cookie; font-size: 50px;"> Begin a New Chapter</h1>
<form name="home" action="http://localhost:3000/chapter_details" method="post">
<div class="form-group" style="width: 500px">
<input type="text" class="form-control" placeholder = "Chapter Name" id="chaptername" name="chaptername" pattern="^[A-Za-z0-9]*[A-Za-z0-9][A-Za-z0-9 _]*" required>
</div>
<button class="btn waves-effect waves-light #880e4f black darken-3" style="width: 500px; color: white;" type="submit" id="submit">Create Chapter</button>
<!--<input type="text" name="msg" id="msg" size="40"><br>
<input type="submit" id="submit" value="Submit">-->
</form>
</center>
</body>
</html>