-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<title> Form registration </title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<div class="container">
<div class="row mt-6">
<div class="col-xl-5 col-lg-6 col-md-8 col-sm-10 mx-auto text-center form p-4 bg-secondary">
<div class="px-2">
<form action="form.php" method="post" class="justify-content-center" id="myForm">
<div class="form-group">
<input class="form-control" type="username" name="username" placeholder="Enter your user name"/>
</div>
<div class="form-group">
<input class="form-control" type="email" name="email" placeholder="email"/>
</div>
<div class="g-recaptcha" data-sitekey="6LcQtdIUAAAAAEHPRmRt4qEx9955uKIMt_0MIcWs"></div>
<input type="submit" value="Login" class="btn btn-primary btn-lg mt-2"/>
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>