-
Notifications
You must be signed in to change notification settings - Fork 0
/
dummy.txt
65 lines (53 loc) · 3.95 KB
/
dummy.txt
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
64
65
<main>
<div className="container">
<section className="section register min-vh-100 d-flex flex-column align-items-center justify-content-center py-4">
<div className="container">
<div className="row justify-content-center">
<div className="col-lg-4 col-md-6 d-flex flex-column align-items-center justify-content-center">
<div className="d-flex justify-content-center py-4">
<a href="index.html" className="logo d-flex align-items-center w-auto">
<img src="assets/img/logo.png" alt="" />
<span className="d-none d-lg-block">NiceAdmin</span>
</a>
</div>
<div className="card mb-3">
<div className="card-body">
<div className="pt-4 pb-2">
<h5 className="card-title text-center pb-0 fs-4">Login to Your Account</h5>
<p className="text-center small">Enter your username & password to login</p>
</div>
<form className="row g-3 needs-validation">
<div className="col-12">
<label htmlFor="yourUsername" className="form-label">Username</label>
<div className="input-group has-validation">
<span className="input-group-text" id="inputGroupPrepend">@</span>
<input type="text" name="username" className="form-control" id="yourUsername" required />
<div className="invalid-feedback">Please enter your username.</div>
</div>
</div>
<div className="col-12">
<label htmlFor="yourPassword" className="form-label">Password</label>
<input type="password" name="password" className="form-control" id="yourPassword" required />
<div className="invalid-feedback">Please enter your password!</div>
</div>
<div className="col-12">
<div className="form-check">
<input className="form-check-input" type="checkbox" name="remember" value="true" id="rememberMe" />
<label className="form-check-label" htmlFor="rememberMe">Remember me</label>
</div>
</div>
<div className="col-12">
<Link to='/dashboard' className="btn btn-primary w-100" type="submit">Login</Link>
</div>
<div className="col-12">
<p className="small mb-0">Don't have account? <a href="pages-register.html">Create an account</a></p>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</main>