-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (81 loc) · 3.98 KB
/
index.html
File metadata and controls
92 lines (81 loc) · 3.98 KB
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
<!DOCTYPE html>
<html style="height: 100%">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<title>Lost For Swords Support</title>
<style>
label {
min-width: 200px;
display: inline-block;
vertical-align: top;
}
.form-group {
padding-bottom: 20px;
}
input {
width: 100%;
min-height: 30px;
}
textarea {
width: 100%;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
var $sendEmailEl = $('#submit');
var $bodyEl = $('#request');
var $emailEl = $('#email2');
// $('#request', '#fullname', '#email').on('input', updateEmailLink);
$sendEmailEl.on('click', () => {
var url = 'mai' + 'lto:office' + '@' + 'max-' + 'bytes.com?' +
'subject=' + encodeURIComponent('Your support request for Lost For Swords') +
'&cc=' + encodeURIComponent($emailEl.val()) +
'&body=' + encodeURIComponent($bodyEl.val());
window.open(url);
});
});
</script>
</head>
<body style="display: flex; align-items: center; justify-content: center; min-height: 100%; margin: 0; background-color: #151515; font-family: 'Roboto', sans-serif;">
<div style="padding: 20px 80px; background-color: #242424; color: #e7e7e7; line-height: 1.5em; border: 1px solid #e7e7e7;">
<h1>Lost For Swords Support</h1>
<p>
To get support for Lost For Swords, you can reach us at the following e-mail address:
</p>
<p>
office [at] max [minus] bytes [dot] com
</p>
<p>
Or contact us directly through the form below:
</p>
<div class="rendered-form">
<!-- <div class="formbuilder-text form-group field-name">
<label for="name" class="formbuilder-text-label">Your Name<span class="formbuilder-required">*</span></label>
<input type="text" class="form-control" name="fullname" access="false" id="fullname" required="required" aria-required="true">
</div> -->
<div class="formbuilder-text form-group field-email2">
<label for="email2" class="formbuilder-text-label">Your e-mail address</label>
<input type="text" class="form-control" name="email2" access="false" id="email2" required="required" aria-required="true">
</div>
<!-- <div class="formbuilder-text form-group field-email" style="display: none">
<label for="email" class="formbuilder-text-label">Your e-mail address</label>
<input type="text" class="form-control" name="email" access="false" id="email">
</div> -->
<!-- <div class="formbuilder-text form-group field-firstname" style="display: none">
<label for="firstname" class="formbuilder-text-label">Name</label>
<input type="text" class="form-control" name="name" access="false" id="name">
</div> -->
<div class="formbuilder-textarea form-group field-request">
<label for="request" class="formbuilder-textarea-label">Your Request</label>
<textarea type="textarea" class="form-control" name="request" access="false" rows="10" id="request" required="required" aria-required="true"></textarea>
</div>
<div class="formbuilder-button form-group field-button-1728469411687">
<button type="button" class="btn-primary btn" name="button-1728469411687" access="false" id="submit">Submit</button>
</div>
</div>
</div>
</body>
</html>