-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form.js
42 lines (41 loc) · 1.32 KB
/
Form.js
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
import React from "react";
export default function Form() {
return (
<div className="d-flex justify-content-center">
<form className="col-4">
<div className="mb-3">
<label htmlFor="exampleInputEmail1" className="form-label text-primary">
Email or Phone
</label>
<input
type="email,tel"
className="form-control border-primary"
id="exampleInputEmail1"
aria-describedby="emailHelp"
/>
</div>
<div className="mb-3">
<label htmlFor="exampleInputPassword1" className="form-label text-primary">
Password
</label>
<input
type="password"
className="form-control border-primary"
id="exampleInputPassword1"
/>
</div>
<div className="mb-3">
<span className="text-primary">Forgot Password</span>
</div>
<div className="d-flex justify-content-center m-4">
<button type="submit" className="btn btn-outline-primary m-3 col-2">
<center>Login</center>
</button>
<button type="submit" className="btn btn-outline-primary m-3 col-2">
<center>Signup</center>
</button>
</div>
</form>
</div>
);
}