-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsignup-comm.html
63 lines (60 loc) · 4.09 KB
/
signup-comm.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
<!doctype html>
<html lang="en">
<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<!---------------- from section here------------------------>
<div class="container" id="registration-form">
<div class="row vh-100 align-center">
<div class="col-md-9 col-lg-8 m-auto ">
<h2 class="login-heading font-weight-bold mb-1" style="color: green;">Welcome To Bio Gas Energy Technology</h2>
<form id="regForm" onsubmit="">
<div class="form-label-group mb-1">
<label for="inputEmail">Name of Representatives</label>
<input type="text" id="fullname" class="form-control" placeholder="Full name" required autofocus>
</div>
<div class="form-label-group mb-1">
<label for="text">Name Of Community</label>
<input type="text" id="fullname" class="form-control" placeholder="Enter Name" required autofocus>
</div>
<div class="form-label-group mb-1">
<label for="inputEmail">Communty Location</label>
<input type="text" id="Address" class="form-control" placeholder="Enter Descriptive Address" required autofocus>
</div>
<div class="form-label-group mb-1">
<label for="inputEmail">Email Address</label>
<input type="email" id="inputEmail" class="form-control" placeholder="Email address" required>
</div>
<div class="form-label-group mb-1">
<label for="inputEmail">Phone Number</label>
<input type="tel" id="inputEmail" class="form-control" placeholder="Enter no" pattern="[0-9]{-9}[0-9]{0-9}[0-9]{0-9}[0-9]{-9}[0-9]{0-9}[0-9]" required>
</div>
<div class="form-label-group mb-3">
<label for="inputPassword">Password</label>
<input type="password" name="Password1" class="form-control" placeholder="Password" required>
</div>
<div class="form-label-group mb-3">
<label for="inputPassword">Confirm Password</label>
<input type="password" name="Password1" class="form-control" placeholder="confirm password" required>
</div>
<button class="btn btn-success btn-block btn-register text-uppercase font-weight-bold mb-2 rounded-pill" type="submit">Sign Up</button>
<div class="text-center mb-2">
<p class="small">Already have an account? <a href="login.html" id="login-btn">Login</a></p>
</div>
</form>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>