-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 1.66 KB
/
index.html
File metadata and controls
37 lines (32 loc) · 1.66 KB
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 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>DigitalOcean Functions reCAPTCHA Demo</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css">
</head>
<body>
<div class="row ms-2 mt-4">
<div class="col-4">
<form id="subscribe-form" class="row g-2 align-items-center">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Your name"
aria-label="Your Name" aria-describedby="button-addon2">
<button class="btn btn-outline-secondary" type="submit" id="button-addon2">Submit</button>
</div>
</form>
<div id="alert" class="alert alert-success d-none" role="alert"></div>
<hr>
<a href="https://github.com/rez0n/digitalocean-functions-python-recaptcha">Source Code</a>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.3/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js"></script>
<script src="https://www.google.com/recaptcha/api.js?render=6LeYKQUlAAAAAIkK4cvk5Q5loTO-z_MKenVoqHIG"></script>
<script src="script.js"></script>
</body>
</html>