forked from joychen5069/BookClub
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate-a-club.handlebars
62 lines (50 loc) · 1.86 KB
/
create-a-club.handlebars
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
<nav>
<div class="nav-wrapper ">
<a href="/" class="brand-logo"><h2>MY BOOKCLUB</h2></a>
<a href="#" data-target="hamburger-menu" class="button sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class="mobileNav">
<li><a href="/books">TOP PICKS</a></li><br>
<li><a href="/clubs">JOIN A CLUB</a></li><br>
<li><a href="/create">CREATE CLUB</a></li>
</ul>
{{!-- List that only displays on mobile --}}
<div class="right fullScreenNav">
<a href="/books" class="navListItem">TOP PICKS</a>
<a href="/clubs" class="navListItem">JOIN A CLUB</a>
<a href="/create" class="navListItem">CREATE CLUB</a>
</div>
</div>
</nav>
<div class="bigLandingImg mobileLeaveSpace">
<img class="responsive-img" src="/assets/bookandcoffee.jpg">
<div class="container createAclubBody">
<h1>Create a Club</h1>
<div class="row create-club">
<form class="col s12 form-group">
<div class="row">
<div class="input-field col s12">
<input type="text" id="clubName" name="name">
<label for="clubName">Club Name:</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input type="text" id="userName" name="name">
<label for="userName">Your name:</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input type="text" id="description" name="name">
<label for="description">Description of your bookclub:</label>
</div>
</div>
<button class="btn waves-effect waves-light" type="submit" id="addClub">Create
</button>
</form>
</div>
</div>
</div>
<footer class="page-footer">
© 2020 Copyright
</footer>