-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
34 lines (34 loc) · 902 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parley</title>
<link rel="stylesheet" href="styles/form.css">
<style>
.container {
display: none;
}
</style>
</head>
<body>
<div class="container">
<div class="instructions-container">
<div id="instructions">
<!-- Instructions will be populated dynamically -->
</div>
</div>
<div class="form-container">
<form id="contact-form" method="POST" enctype="text/plain">
<!-- Form fields will be populated dynamically -->
</form>
</div>
</div>
<noscript>
<div style="color: red; text-align: center; padding: 20px;">
JavaScript is disabled. Please enable JavaScript to use this form.
</div>
</noscript>
<script src="scripts/form.js"></script>
</body>
</html>