-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
73 lines (66 loc) · 1.89 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>VGS Addon for Netlify</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<style>
body {
margin-top: 100px;
font-size: 18px;
}
.form-control {
font-size: 14px;
}
[data-secure-field] iframe {
border: 0 none transparent;
height: inherit;
vertical-align: middle;
width: inherit;
position: relative;
left: 1px;
top: -8px;
}
/* span[data-secure-field] {
background-color: #fff;
border: 1px solid #dfdfdf;
display: inline-block;
height: 27px;
padding: 1px;
position: relative;
width: 128px;
} */
form span {
display: inline-block;
height: 20px;
width: 200px;
margin-bottom: 15px;
}
span iframe {
height: 100%;
width: 100%;
}
.container {
width: 400px;
}
</style>
</head>
<body>
<div class="container">
<h3 class="mb-5">VGS Addon for Netlify</h3>
<form name="contact" method="post" netlify-honeypot="b" autocomplete="off" data-netlify data-secure>
<div class="form-group">
<label for="field">Basic Field</label>
<input type="text" class="form-control" name="field" id="field" placeholder="Password">
</div>
<div class="form-group">
<label for="secure-field">Secure Fields</label>
<input type="text" class="form-control" name="secure-field" id="secure-field" placeholder="Secure Field" data-secure-field>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
</html>