-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
74 lines (65 loc) · 3.1 KB
/
Copy pathcontact.html
File metadata and controls
74 lines (65 loc) · 3.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>ProbablePrime - Contact</title>
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.css@8.0.0/" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flexboxgrid/6.3.1/flexboxgrid.min.css"
type="text/css">
<link rel="stylesheet" href="socicon.css">
<link rel="stylesheet" href="styles.css">
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
</head>
<body>
<div class="v" style="height: auto; min-height: 100vh; padding: 40px 0;">
<div class="row center-xs">
<div class="col-sm-12">
<a href="/"><img src="images/logo.png" alt="ProbablePrime's Logo" style="max-width: 200px;" /></a>
</div>
</div>
<div class="row center-xs text">
<div class="col-sm-12 tagline">
Contact Me
</div>
</div>
<div class="row center-xs">
<div class="col-sm-12 col-md-8">
<div class="page-container contact">
<form action="/contact" method="POST" class="contact-form">
<div>
<label for="name">Name</label>
<input type="text" id="name" name="name" required />
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" name="email" required />
</div>
<div>
<label for="cat">Category</label>
<select id="cat" name="cat" required>
<option value="select">Select a category...</option>
<option value="General Enquiry">General Enquiry</option>
<option value="Business Proposal">Business Proposal</option>
</select>
</div>
<div>
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<div style="display: none;">
<input type="checkbox" name="GsCxeZTv" value="Yes" tabindex="-1" autocomplete="off" />
</div>
<div class="cf-turnstile" data-sitekey="0x4AAAAAAEWM1SAh23iQ5K5p"></div>
<button type="submit" class="primary-btn">Send Message</button>
</form>
<div style="text-align: center;">
<a href="/" class="back-link">Back to Homepage</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>