-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
<link rel="stylesheet" href="./bootstrap/css/bootstrap.css">
</head>
<body>
<div class="container">
<form action="./upload.php" class="form-group" method="post" name="form">
<div class="form-group">
<label for="emailAdress">Email adress</label>
<input class="form-control" type="email" id="emailAdress" name="emailAdress" placeholder="Enter email">
<small class="form-text text-muted">Please enter your registered email</small>
</div>
<div class="form-group">
<label for="fullName">Fullname</label>
<input class="form-control" type="text" id="fullName" name="fullName" placeholder="Enter your username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input class="form-control" type="password" id="password" name="password" placeholder="Enter a password" >
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="checkMe">
<label class="form-check-label" for="checkMe">Check me</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<script src="./bootstrap/js/bootstrap.js"></script>
<script src="./bootstrap/js/jquery.js"></script>
</body>
</html>