-
Notifications
You must be signed in to change notification settings - Fork 0
/
creatorenrollment.html
90 lines (77 loc) · 3.94 KB
/
creatorenrollment.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-12">
<h4 class="modal-title text-center">Creator Enrollment Form</h4>
<div class="col-md-12 text-center mt-2">
<small>All Fields are Mandatory</a></small>
</div>
<div class="login-form">
<form class="form">
<div class="form-group">
<label for="exampleInputName">Name</label>
<input type="text" class="form-control border-top-0 border-left-0 border-right-0 border-bottom" id="exampleInputName" aria-describedby="nameHelp" placeholder="Name">
</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="exampleInputContact">Contact</label>
<input type="number" class="form-control border-top-0 border-left-0 border-right-0 border-bottom" id="exampleInputContact" aria-describedby="contactHelp" placeholder="Contact">
</div>
<div class="form-group">
<label for="exampleInputYoutubeChannelLink">Youtube Channel Link</label>
<input type="password" class="form-control border-top-0 border-left-0 border-right-0 border-bottom" id="exampleInputYoutubeChannelLink" placeholder="Link">
</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">Submit</button>
<div class="col-md-12 text-center mt-2">
<small>Do you have an account? <a href="register.html">Signup</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>