-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequest-game.html
56 lines (47 loc) · 2.72 KB
/
request-game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Request a Game - LupineVault</title>
<link rel="stylesheet" href="assets/styles/css/global.min.css">
<script defer src="https://cloud.umami.is/script.js" data-website-id="52bfea34-46bb-49d1-976f-a5252508ddef"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tf7software/Font-Awesome-pro-cdn@main/css/all.css">
</head>
<body>
<div id="particles-js"></div>
<script src="/particles.min.js"></script>
<main class="container">
<h1>Request a Game</h1>
<p>Please fill out the form below to submit your game request. We look forward to hearing your suggestions!</p>
<h2>Use a REAL email so we can contact you. Non-real emails will be ignored.</h2>
<form id="request-form" name="request-game-form" action="https://formspree.io/f/xbljkwak" method="post">
<!-- Contact Information -->
<fieldset class="form-section">
<legend>Contact Information</legend>
<label for="full-name">Full Name<span class="required">*</span></label>
<input type="text" name="name" id="full-name" class="form-input" placeholder="First and Last Name" required>
<label for="email-address">Email Address<span class="required">*</span></label>
<input type="email" name="_replyto" id="email-address" class="form-input" placeholder="yourname@example.com" required>
</fieldset>
<!-- Game Title -->
<fieldset class="form-section">
<legend>Game Title</legend>
<label for="game-title">Game Title<span class="required">*</span></label>
<input type="text" name="game-title" id="game-title" class="form-input" placeholder="Enter the game title" required>
</fieldset>
<!-- Recommendation Reason -->
<fieldset class="form-section">
<legend>Why Recommend This Game?</legend>
<textarea name="game-recommendation" id="game-recommendation" class="form-textarea" rows="5" placeholder="Tell us why this game would be a great addition."></textarea>
</fieldset>
<input type="hidden" name="_subject" value="Game Request Submission">
<button type="submit" class="submit-button">Submit Request</button>
</form>
<div id="form-success" class="form-success" hidden>
<p>Thank you for your submission! We will review your request and get back to you soon.</p>
</div>
</main>
<script src="assets/js/global.js"></script>
</body>
</html>