-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
65 lines (57 loc) · 1.78 KB
/
feedback.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>No Lab Physics</title>
<link rel="stylesheet" href="./styles/global.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap" rel="stylesheet">
<style>
form > *, label {
display: block;
margin: 1rem;
}
</style>
<script type="module" src="./navbar.js"></script>
</head>
<body>
<physics-navbar></physics-navbar>
<main class="regular-page">
<h1>Feedback Form</h1>
<p>
If you have a GitHub account, we prefer that you
<a href="https://github.com/WalnutProgramming/Physics-Engine-P5/issues">
report issues on GitHub
</a>, but here is fine too.
</p>
<form name="feedback" method="POST" data-netlify="true">
<label>
Feedback Type*
<select name="feedbackType" required>
<option value="bug">Bug Report</option>
<option value="other">Other</option>
</select>
</label>
<label>
What's your feedback?*
<textarea name="feedback" style="width: 100%; height: 5rem; display: block" required></textarea>
</label>
<div style="border: 1px solid black; padding: 1rem">
<h2 style="font-size: 1em">Contact Info (optional)</h2>
<label>
Name
<input name="name">
</label>
<label>
Email
<input type="email" name="email">
</label>
</div>
<div class="button-container">
<button>Send</button>
</div>
</form>
</main>
</body>
</html>