-
Notifications
You must be signed in to change notification settings - Fork 2
/
invite.html
35 lines (35 loc) · 917 Bytes
/
invite.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/screen.css" media="screen, projection">
<title>Invite Users to {Class Name}</title>
</head>
<body>
<div class="wrapper">
<form action="chatmonitor.html">
<fieldset class="standalone">
<legend>Invite Users to {Class Name}</legend>
<label class="field">
<input type="email" placeholder="Email address to invite" name="email1">
</label>
<label class="field">
<input type="email" name="email2">
</label>
<label class="field">
<input type="email" name="email3">
</label>
<label class="field">
<input type="email" name="email4">
</label>
<label class="field">
<input type="email" name="email5">
</label>
<div class="field submit">
<input type="submit" value="Send Invitations">
</div>
</fieldset>
</form>
</div>
</body>
</html>