-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (72 loc) · 3.34 KB
/
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
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<title>Women Who Code Huntsville</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Hind|Montserrat|Open+Sans" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="notify.min.js"></script>
<style>
.jumbotron {
background-color: white;
}
h1 {
background-color: white;
color: #48484A;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
p {
padding: 5px;
background-color:white;
color: #48484A;
font-family: 'Hind', sans-serif;
font-weight: bold;
}
button {
font-family: 'Hind', sans-serif;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
</div>
<div class="jumbotron text-center">
<h1><center><img src="wwchsv-logo.png" alt="Women Who Code Huntsville" class="img-responsive"></center></h1>
<p><b>Join our community</b></p>
<form method="POST" action="http://wwchsv-slack-invite.herokuapp.com/invite/" class="form-inline" id="join-form">
<input type="email" name="email" id="emailTextBox" class="form-control" size="50" placeholder="Email Address" required>
<button type="submit" class="btn btn-danger submit"><b>Join</b></button>
</form>
<p>
<a target="_blank" title="Follow us on Twitter" href="http://www.twitter.com/WWCodeHSV"><img alt="Follow us on Twitter" src="https://c866088.ssl.cf3.rackcdn.com/assets/twitter40x40.png" border=0></a>
<a target="_blank" title="Join us on Facebook" href="https://www.facebook.com/groups/WWCodeHSV/"><img alt="Join us on Facebook" src="https://c866088.ssl.cf3.rackcdn.com/assets/facebook40x40.png" border=0></a>
<a target="_blank" title="Join us on Meetup.com" href="https://www.meetup.com/Women-Who-Code-Huntsville/"><img alt="Join us on Meetup.com" src="https://secure.meetupstatic.com/s/img/422066906568/logo/swarm/m_swarm_128x128.png" width="60" height="60" border=0></a>
<a title="Email us" href="mailto:erin@womenwhocode.com"><img alt="Email us" src="email.png" border=0></a>
</p>
</div>
<script>
var form = document.getElementById('join-form');
var email = document.getElementById('emailTextBox')
var token = document.getElementById('slack-token');
form.addEventListener('submit', function(evt) {
if (!email.value) {
evt.preventDefault();
}
});
function success(evt) {
$("#emailTextBox")
.notify("Succesfully submitted invitation request.", { className: "success", position: "bottom center" });
}
function fail(evt) {
$("#emailTextBox")
.notify("Failed to submit invitation request. Contact Women Who Code HSV administrator to resolve issue. Please email erin@womenwhocode.com.",
{ className: "error", position: "bottom center" });
}
</script>
</body>
</html>