-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (64 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/8f31de1937.js" crossorigin="anonymous"></script>
<title>Form to fill</title>
<style>
.navbar {
padding-left: 30px;
padding-right: 30px;
}
.circle {
border-radius: 100px;
}
</style>
</head>
<body>
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<a class="navbar-brand" href="https://justin900429.github.io/form_to_send_back"> Form to send back </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="https://github.com/Justin900429/form_to_send_back#readme"> Usage </span></a>
</li>
</ul>
</div>
</nav>
<br />
<div class="row justify-content-md-center">
<form action="https://script.google.com/macros/s/AKfycbzd3_D6nKNHd_aNNGYAxT7cnDxgLiDO5G69OKBCNf8Tv49p2EKVYEl3LyJhzMLyJMhK/exec" method="get">
<!-- Email input -->
<div class="form-outline mb-4">
<label class="form-label" for="name">Email</label>
<input type="email" required="required" id="name" name="name" class="form-control" placeholder="example@hello.com" />
</div>
<!-- Form url input -->
<div class="form-outline mb-4">
<label class="form-label" for="form1Example2">Google Form <strong>edit</strong> url</label>
<input type="url" required="required" id="url" name="form_url" class="form-control" placeholder="https://.../edit" />
</div>
<!-- Submit button -->
<button type="submit" class="btn btn-primary btn-block">Send!</button>
</form>
<!-- Fab icon -->
<div class="text-center">
<p>Watch more</p>
<button onclick="location.href='https://justin900429.github.io'" type="button" class="circle btn btn-primary btn-floating mx-1">
<i class="fas fa-home"></i>
</button>
<button onclick="location.href='https://github.com/Justin900429/form_to_send_back'" type="button" class="circle btn btn-primary btn-floating mx-1">
<i class="fab fa-github"></i>
</button>
</div>
</div>
</div>
</body>
</html>