-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (65 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Junte-se ao Hackerspace Blumenau no Slack!</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<style type="text/css">
* {
font-family: "Roboto"
}
input[type=submit] {
background-color: #E01563;
color: #fff;
text-transform: uppercase;
cursor: pointer;
outline: 0;
font-weight: bold;
border-width: 0;
font-size: 1.2rem;
margin-top: 1rem;
display: block;
text-align: center;
box-sizing: border-box;
width: 100%;
padding: .9rem;
}
input[type=email] {
border: .1rem solid #D6D6D6;
font-size: 1.2rem;
display: block;
width: 100%;
padding: .9rem;
}
a {
color: #E01563;
text-decoration: none;
}
body {
margin-top: .9rem;
display: flex;
justify-content: center;
}
center {
border-radius: 50%;
}
</style>
</head>
<body>
<center>
<img src="images/hs_logo.jpg" width="100px" height="100px" alt="Hackerspace Blumenau Logo">
<h3>Junte-se ao <strong>Hackerspace Blumenau</strong> no Slack.</h3>
<form action="https://join.slack.com/t/hackerspaceblumenau/shared_invite/zt-1pmb84wc4-zNRhKV5g~bSe7zj8YUoC7A"
method="get">
<input type="checkbox" name="accept_code_of_conduct" id="accept_code_of_conduct" required>
<label for="accept_code_of_conduct">Eu concordo com o <a
href="https://docs.google.com/document/d/1gub41z1uDSsrLPm850TwX1zk1b42m29jiWxNctZytpA/edit?usp=sharing"
target="_blank" rel="noopener noreferrer">Código de Conduta</a></label>
<br>
<input type="submit" value="Receber Meu Convite">
</form>
</center>
</body>
</html>