-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (28 loc) · 766 Bytes
/
index.html
File metadata and controls
37 lines (28 loc) · 766 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Codebags Slack</title>
</head>
<body>
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">Welcome to Codebag Nation</div>
<div class="intro-heading">An online programming school tailored just for you</div>
<div>Join us, drop your mail and get invited to Slack</a>
</div>
</div>
</header>
<form action="backend.php" method="post">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" name="name" required>
<br>
<label for="email">Email</label>
<input type="email" class="form-control" name="email" required>
<br>
<input type="submit" class="btn btn-default" value="Submit">
</div>
</form>
</body>
</html>