-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
37 lines (35 loc) · 1.34 KB
/
index.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
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!-- recaptcha cdn -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- recaptcha cdn -->
</head>
<body>
<div class="container">
<h2>Vertical (basic) form</h2>
<form method="post" action="action_page.php">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" placeholder="Enter email" name="email">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Enter password" name="pwd">
</div>
<div class="checkbox">
<label><input type="checkbox" name="remember"> Remember me</label>
</div>
<!-- site_key -->
<div class="g-recaptcha" data-sitekey="SITE_KEY"></div>
<button type="submit" class="btn btn-default" name="submit">Submit</button>
</form>
</div>
</body>
</html>