-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreg_form.html
More file actions
139 lines (114 loc) · 2.82 KB
/
Copy pathreg_form.html
File metadata and controls
139 lines (114 loc) · 2.82 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for HTML5 for Linux version 5.2.0" />
<title>Join TriLUG!</title>
<style>
.error {
color: red;
}
form,p {
max-width: 40em;
}
form {
margin-left: auto;
margin-right: auto;
}
label {
margin-bottom: 2ex;
display: inline-block;
}
input {
display: block;
}
input[name="zipcode"] {
width: 5em;
}
input[type="submit"] {
margin-left: auto;
margin-right: auto;
}
.optional:before {
content: "[*]";
font-weight: bold;
}
</style>
</head>
<body>
<div id="missing" style="display: none">
<p><strong>Error: Required field(s) not filled out.</strong></p>
</div>
<div class="error">
<p id="exception"></p>
</div>
<form method="post" action="#">
<p>
Thank you for your interest in TriLUG! The process of
becoming a member is very simple. Just fill out and submit
the form below, and then talk to one of the members of the
Steering Committee at the next meeting you attend (or the
same one, if you're filling this out while you're there).
They can quickly process your request and get you set up in
no time.
</p>
<hr width="50%" />
<label>
First Name
<input name="first" required />
</label>
<label>
Last Name
<input name="last" required />
</label>
<br/>
<label>
Street Address 1
<input name="addr1" required />
</label>
<br/>
<label class="optional">
Street Address 2
<input name="addr2" />
</label>
<br/>
<label>
City
<input name="city" required />
</label>
<label>
State
<input name="state" size="2" required />
</label>
<label>Zip
<input type="number" name="zipcode" required pattern="[0-9]{5}" />
</label>
<br/>
<label>
Email
<input type="email" name="email" required />
</label>
<br/>
<label class="optional">
Preferred User ID
<input name="username" />
</label>
<p class="optional">
Optional fields. You can leave the User ID blank if you don't want shell or email.
</p>
<input type="submit" value="Submit" />
</form>
<div id="success" style="display: none">
<p>
Thank you for requesting membership in TriLUG! Be sure to come to a
meeting in person in order to complete the process. See you there!
</p>
</div>
<hr width="50%" />
<div align="center">
Reload the <a href="$script_name">form</a> <strong>|</strong>
Back to <a href="/">TriLUG</a>
</div>
</body>
</html>