-
Notifications
You must be signed in to change notification settings - Fork 0
/
deetspayment.html
90 lines (78 loc) · 3.83 KB
/
deetspayment.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>Copy Me</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="container">
<h2>Modal Example</h2>
<!-- Button to Open the Modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
Open modal
</button>
<!-- The Modal -->
<div class="modal" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header border-0">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body text center">
<div class="container">
<div class="row">
<div class="col-md-4">
<div
</div>
<div class="col-md-8">
<h4 class="modal-title text-center">Register</h4>
<div class="btn-group d-flex my-3">
<button type="button" class="btn btn-outline-secondary">Login with Facebook</button>
<button type="button" class="btn btn-outline-secondary">Login with Twitter</button>
</div>
<div class="login-form">
<form class="form">
<div class="form-group">
<label for="exampleInputUsername">Username</label>
<input type="text" class="form-control border-top-0 border-left-0 border-right-0 border-bottom" id="exampleInputUsername" aria-describedby="emailHelp" placeholder="Username">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Email</label>
<input type="email" class="form-control border-top-0 border-left-0 border-right-0 border-bottom" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control border-top-0 border-left-0 border-right-0 border-bottom" id="exampleInputPassword" placeholder="Password">
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Modal footer -->
<div class="modal-footer justify-content-center border-0">
<button type="submit" class="btn neo-primary-btn abit-white abit-bg-purple" data-dismiss="modal">Create Account</button>
<div class="col-md-12 text-center mt-2">
<small><strong>Are you Creator?</strong></small><br>
<small>Already have an account? <a href="login.html">Login</a></small>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="../../node_modules/silkrouter/dist/umd/silkrouter.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/jquery.router.min.js"></script>
<script src="js/detects.js"></script>
<script src="js/another-file.js"></script>
<script src="js/main.polyfills.js"></script>
</body>
</html>