-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregis.html
47 lines (45 loc) · 1.37 KB
/
regis.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
<html>
<head>
<title>Registration Page Design</title>
<link rel="stylesheet" href="stylereg.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<form action="https://formspree.io/f/xqknoqdp" method="POST">
<div class="container">
<div class="row">
<div class="col-md-10 offset=md-1">
<div class="row">
<div class="col-md-5 register-left">
<h3> Join Us </h3>
<p> Register in our webpage to get usefull information Related to Maternal health </p>
<button type="button" class="btn btn-primary">About Us</button>
</div>
<div class="col-md-7 register-right">
<h2> Register Here </h2>
<div class="register-form">
<div class="form-group">
<input type="text" class="form-control" placeholder="name" required>
</div>
<div class="form-group">
<input type="date" class="form-control" placeholder="Date of Birth" required>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Blood group" required>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Address" required>
</div>
<div class="form-group">
<input type="number" class="form-control" placeholder="Emergency contact number">
</div>
<input type="submit" value="Register" class=" btn btn-primary" />
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</body>
</html>