forked from hilderbrandtjohn/shelfindulgence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetstarted.php
138 lines (122 loc) · 9.93 KB
/
getstarted.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php include('db.php') ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Get Started on Shelf Indulgence</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Sign up for a free Shelf Induldence account to manage and organize your book club events." />
<meta name="theme-color" content="#ffffff">
<!-- Font tags-->
<!-- End Font tags -->
<!-- Style Tags-->
<link rel="stylesheet" href="static/css/vendors~main.css">
<link rel="stylesheet" href="static/css/main.css">
<link rel="stylesheet" href="static/css/GetStartedPage.css">
<!-- End Style Tags -->
</head>
<body class="intent-mouse">
<div id="root">
<div>
<div class="wrapper-container undefined">
<header class="header-container">
<nav class="navbar">
<div class="navbar-header">
<div class="navbar-brand logo"><a href="index.html" aria-label="Link to Shelf Indulgence's Homepage"><img width="233" height="30" src="static/media/logo.png" class="img-responsive" alt="" /></a></div>
</div>
<div class="skip-to-content"><a href="#content">Skip to content</a></div>
<div class="navbar-collapse">
<div class="nav-wrapper">
<div class="header-group-button"><button id="bt-open-menu" type="button" aria-label="Open menu" class="btn btn-open-menu lines-button x "><span class="lines"></span></button></div><a href="signin.php" class="btn-signin-rw ">Sign in</a>
<div aria-hidden="false" tabindex="-1" class="nav-container ">
<ul class="nav bz-navbar-nav navbar-user"></ul>
<ul class="nav bz-navbar-nav navbar-right">
<li class="m-item" ><a href="" class="m-link">Resources</a>
<ul class="sub-menu sub-menu-user sub-menu-block">
<li class="m-sub-item"><a href="https://www.goodreads.com/" target="_blank" class="m-link">Good Reads</a></li>
<li class="m-sub-item"><a href="https://www.librarything.com/" target="_blank" class="m-link">Library Thing</a></li>
<li class="m-sub-item"><a href="https://b-ok.africa/" target="_blank" class="m-link">Z-Library</a></li>
<li class="m-sub-item"><a href="https://www.libgen.is/" target="_blank" class="m-link">Library Genesis</a></li>
</ul>
</li>
<li class="m-item"><a href="signin.php" class="m-link">Join a book club</a></li>
<li class="m-item"><a href="signin.php" class="m-link">Shop</a></li>
<li class="m-item"><a href="about.html" class="m-link">About</a></li>
<li class="m-item"><a href="signin.php" class="mtr-button btn-white">Sign in</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<main class="main-container" id="content">
<div class="signup-container">
<div class="left-container">
<div class="signin-content">
<div class="main-form-content signup-form-content">
<form class="main-form" novalidate="" method="POST" action="getstarted.php">
<h1 class="title-form">Sign Up</h1>
<?php include('errors.php'); ?>
<div class="form-group undefined"><input type="email" maxLength="255" id="email" aria-label="Your Email" aria-required="true" name="email" value="" placeholder="Your Email" class="form-control" /><span role="alert" class="notification-message error"></span></div>
<div class="form-group undefined"><input type="text" maxLength="255" id="username" aria-label="Your Username" aria-required="true" name="username" value="" placeholder="Your Username" class="form-control" /><span role="alert" class="notification-message error"></span></div>
<div class="form-group undefined"><input type="text" maxLength="255" id="state" aria-label="Your County/State" aria-required="true" name="state" value="" placeholder="Your County/State" class="form-control" /><span role="alert" class="notification-message error"></span></div>
<div class="form-group undefined"><input type="text" maxLength="255" id="city" aria-label="Your City/Town" aria-required="true" name="city" value="" placeholder="Your City/Town" class="form-control" /><span role="alert" class="notification-message error"></span></div>
<div class="form-group undefined"><input type="password" maxLength="255" id="password" aria-label="Password" aria-required="true" name="password" value="" placeholder="Password" class="form-control" /><span role="alert" class="notification-message error"></span></div>
<div class="form-group button-group"><button name="register" type="submit" class="mtr-button" >Get Started</button></div>
</form><a href="signin.php" class="txt-forgot-link">Already have a Shelf Induldence account?Sign in</a>
</div>
</div>
</div>
<div class="right-container" style="background-image:url(static/media/bg-log.jpg)"></div>
</div>
</main>
<footer class="footer-container">
<div class="footer-top"><a href="/" class="logo-footer" aria-label="Link to BookClubz's Homepage"><img width="203" height="26" class="img-responsive" src="static/media/logo.png" alt="" /></a></div>
<div class="footer-middle">
<div class="footer-nav">
<div class="footer-nav-item">
<h3 class="nav-title">Company</h3>
<p class="nav-item"><a class="nav-link" href="/about">About Bookclubz</a></p>
<p class="nav-item"><a class="nav-link" href="/privacy-policy">Privacy Policy</a></p>
</div>
<div class="footer-nav-item">
<h3 class="nav-title">Community</h3>
<p class="nav-item"><a class="nav-link" href="signin.php">Join a Book Club</a></p>
</div>
<div class="footer-nav-item">
<h3 class="nav-title">Support</h3>
<p class="nav-item"><a class="nav-link" href="/faq/#contact-us">Contact Us</a></p>
<p class="nav-item"><a class="nav-link" href="/faq">FAQ</a></p>
</div>
<div class="mask"></div>
</div>
<div class="subscribe-block">
<h3 class="nav-title">Keep in touch</h3>
<p class="nav-item">Join the Shelf Indulgence newsletter for monthly reading recommendations, book club tips, giveaways, and more.</p>
<div class="blog-subscribe subscribe-top-books">
<div class="center">
<h2 class="subscribe-title">Enter your email to receive Bookclubz' newsletter with reading recommendations and the most popular book club books each month.</h2>
<form class="form-subscribe" novalidate=""><input type="email" class="input-form" value="" aria-label="Email address" placeholder="Email address" /><button type="submit" class="input-submit">SUBSCRIBE</button></form>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="copyright">
<p>©
<!-- -->2021
<!-- --> John Hilderbrandt All rights reserved
</p>
</div>
<div class="social-list">
<p class="social-items">Connect</p>
<div class="social-items"><a target="_blank" rel="noopener noreferrer" aria-label="Link to BookClubz's Instagram" href="https://www.instagram.com/bookclub.z/"><span class="ficon ficon-instagram"></span></a></div>
<div class="social-items"><a target="_blank" rel="noopener noreferrer" aria-label="Link to BookClubz's LinkedIn" href="https://www.linkedin.com/company/bookclubz"><span class="ficon ficon-linkedin-circle"></span></a></div>
</div>
</div>
</footer>
</div>
<div class="Toastify"></div>
</div>
</div>
</body>
</html>