-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonalEncouragementServicesNotAccessible.html
96 lines (85 loc) · 4.28 KB
/
PersonalEncouragementServicesNotAccessible.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sparks - A company that cares about you</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="flex" id="main-nav">
<div class="flex">
<span class="sparks item" style="border: none; font-size: x-large;">Sparks</span>
</div>
<div class="flex">
<a id="home" class="item" onclick="activateLink('HomePageNotAccessible.html')">
Home
</a>
</div>
<div class="flex" id="our-services">
<div class="item">
Our Services <i class="chevron"></i>
</div>
<div class="flex subitems">
<a class="item" style="margin-bottom:0px !important;" onclick="activateLink('PersonalEncouragementServicesNotAccessible.html')">
Request a personal encouragement message
</a>
</div>
</div>
<div class="flex" id="interested-in-us">
<div class="item">
Interested in Us? <i class="chevron"></i>
</div>
<div class="flex subitems">
<a class="item" onclick="activateLink('OurMissionPageNotAccessible.html')">
Our Mission
</a>
<a class="item" onclick="activateLink('OurTeamPageNotAccessible.html')">
Our Team
</a>
<a class="item" style="margin-bottom: 0px !important;" onclick="activateLink('AnalyticsPageNotAccessible.html')">
Cool Company Analytics
</a>
</div>
</div>
</div>
<div class="main-content">
<div id="termsDialog" class="dialog">
<div class="heading-2">Terms and Services</div>
<div class="paragraph">By using this service, you agree to be awesome, kind, and understanding. We promise to keep your details safe and only use them to send you personalized encouragement messages.</div>
<button onclick="closeTerms()" class="form-button">Close</button>
</div>
<div class="heading-1">Request a Personal Encouragement Message</div>
<div class="paragraph">
Everyone needs a little encouragement sometimes. Fill out the form below, and our team will send you a personalized message to brighten your day.
</div>
<form action="/submitEncouragement" method="post" class="encouragement-form">
<div class="form-label">*How People Call You:</div>
<input type="text" id="name" name="name" placeholder="Enter your value here" class="form-input" tabindex="2">
<div class="form-label">*Where to Send the Email:</div>
<input type="text" id="email" placeholder="Enter your value here" class="form-input" tabindex="1">
<div class="form-label">Message Type:</div>
<select name="messageType" class="form-input" tabindex="4">
<option value="uplifting">Uplifting</option>
<option value="funny">Funny</option>
<option value="motivational">Motivational</option>
</select>
<div class="form-label">Anything you'd like to share:</div>
<textarea name="additionalInfo" placeholder="Let us know any details you'd like us to include in the message" class="form-input" tabindex="5"></textarea>
<div class="form-checkbox">
<input type="checkbox" id="terms" name="terms" tabindex="3" required>
<div for="terms">I agree to the <a href="#" onclick="showTerms()">Terms and Services</a>.</div>
</div>
<button type="submit" class="form-button" tabindex="6">Submit Request</button>
<div class="paragraph" style="margin-top: 24px;">This form was made using <span class="sparks">Sparks</span> Drag-and-Drop™ forms maker.</div>
</form>
</div>
<script src="functions.js"></script>
<script>
function showTerms() {
document.getElementById('termsDialog').style.display = 'block';
}
function closeTerms() {
document.getElementById('termsDialog').style.display = 'none';
}
</script>
</body>
</html>