-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.php
34 lines (27 loc) · 1.04 KB
/
form.php
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
<!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">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>G(e)mails</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="signin.css" rel="stylesheet">
<title>Collect Emails</title>
</head>
<body>
<div class="container">
<form method="POST" class="form-signin" role="form" action="folders.php" required autofocus>
<h2 class="form-signin-heading">Get G(e)mails</h2>
<input type="text" class="form-control" placeholder="put your email here" name="username"/>
<input type="text" class="form-control" placeholder="and your password here" name="password" value=""/>
<button class="btn btn-lg btn-primary btn-block" type="submit">Go</button>
</div>
</form>
</body>
</html>