-
Notifications
You must be signed in to change notification settings - Fork 2
/
loyalty-registration.php
51 lines (39 loc) · 1.74 KB
/
loyalty-registration.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loyalty Registration - Between the Spines</title>
<link rel="stylesheet" href="https://betweenthespines.fun/css/styles.css">
</head>
<body>
<header>
<h1>Loyalty Program Registration</h1>
</header>
<nav>
<a href="/index.php">Home</a>
<a href="/Books-for-sale/books-for-sale.php">Books for Sale</a>
<a href="/loyalty-registration/loyalty-registration.php">Loyalty Registration</a>
<a href="/Contact-us/contact.php">Contact Us</a>
</nav>
<section class="content">
<h2>Join Our Loyalty Program!</h2>
<p>Sign up for the Between the Spines Loyalty Program to earn rewards for every purchase!</p>
<!-- Loyalty Registration Form -->
<form action="" method="POST" class="registration-form">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required placeholder="Your full name">
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required placeholder="Your email">
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" required placeholder="Your phone number">
<label for="address">Mailing Address:</label>
<textarea id="address" name="address" rows="4" required placeholder="Your mailing address"></textarea>
<input type="submit" value="Sign Up">
</form>
</section>
<footer>
<p>© 2024 Between the Spines</p>
</footer>
</body>
</html>