-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.html
103 lines (98 loc) · 4.39 KB
/
application.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
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="canonical" href="https://veteranarts.org/application.html" />
<meta name="description" content="Apply for an artist residency today. Veteran Artist Residencies is a non-profit that provides paid artistic residencies for post-9/11 veteran writers."/>
<meta property="og:title" content="Veteran Artist Residencies: A Non-Profit Supporting America's Veterans"/>
<meta property="og:description" content="Apply for an artist residency today. The Veteran Artist Residencies non-profit provides paid artistic residencies to post-9/11 combat veterans seeking healing and expression through the arts."/>
<meta property="og:image" content="https://res.cloudinary.com/practicaldev/image/fetch/s--ZXjkFHED--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tfv32s10me52o9lombtx.png"/>
<meta property="og:url" content="https://veteranarts.org/application.html"/>
<meta name="twitter:card" content="summary"></meta>
<meta name="twitter:site" content="@nbhankes"></meta>
<meta name="twitter:title" content="Veteran Artist Residencies: A Non-Profit Supporting America's Veterans"/>
<meta name="twitter:description" content="Apply for an artist residency today. The Veteran Artist Residencies non-profit provides paid artistic residencies to post-9/11 combat veterans seeking healing and expression through the arts."/>
<meta name="twitter:image" content="https://res.cloudinary.com/practicaldev/image/fetch/s--ZXjkFHED--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tfv32s10me52o9lombtx.png"/>
<link rel="stylesheet" href="./application.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/water.css@2/out/light.css"
/>
<title>Veteran Artist Residencies Application</title>
</head>
<body>
<!----------------------- DESKTOP NAV -------------------------->
<header id="my-header" class="my-header">
<div class="my-logo-container">
<img class="my-logo" alt="Veteran Artist Residencies nonprofit logo" src="assets/VAR-header.png" style="max-width: 250px;"></img>
</div>
<nav class="my-nav-container">
<a href="./index.html">Return Home</a>
</nav>
</header>
<!----------------------- MOBILE NAV -------------------------->
<header>
<nav>
<div class="mobile-visible">
<img class="mobile-header-logo" alt="Veteran Artist Residencies nonprofit logo" src="./assets/quill.png" alt="Logo" />
<div href="" class="burger" onclick="openMobileNav()">☰</div>
</div>
<div class="topnav">
<div id="myLinks">
<a href="./index.html">Return Home</a>
</div>
</div>
</nav>
</header>
<!----------------------- FORM ------------------------------->
<form
netlify
name="application-submittal"
method="POST"
action="./success.html"
id="application-form"
>
<label>Name</label>
<input
id="form-name"
type="text"
maxlength="40"
required
name="name"
autofocus
/>
<label>Email</label>
<input
type="email"
maxlength="50"
required
name="email"
id="form-email"
/>
<label for="phone">Phone</label>
<input type="tel" maxlength="14" minlength="10" required id="form-phone" name="phone" />
<label>What</label>
<textarea required name="what" id="what-prompt"></textarea>
<label>Why</label>
<textarea required name="why" id="why-prompt"></textarea>
<p>
This application is a pre-screening process. Your approach to the
open-ended format reveals important traits of how your mind works. Just
answer in the way that feels most natural.
</p>
<p>
Applicants are encouraged to write their responses elsewhere, somewhere
they can be saved mid-edit.
</p>
<p>
Once the application is submitted, applicants can expect to be contacted
within two weeks.
</p>
<div class="center">
<input type="submit" value="Submit" id="submit-button" />
</div>
</form>
<script src="./default.js"></script>
</body>
</html>