-
Notifications
You must be signed in to change notification settings - Fork 0
/
editcreatorprofile.html
113 lines (110 loc) · 5.95 KB
/
editcreatorprofile.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<title>Edit Creator Profile</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="svg/favicon.svg" type="image/x-icon">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M2C1G7D2PW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M2C1G7D2PW');
</script>
</head>
<body>
<header style="height: 67px;">
<nav class="navbar navbar-expand-lg navbar-light bg-light" style="height: 67px;">
<div class="container">
<a class="navbar-brand" href="index.html">aBit</a>
<!-- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button> -->
<div class="expand navbar-expand" id="navbarTogglerDemo02">
<ul class="navbar-nav ml-auto mt-lg-0 ">
<li class="nav-item active">
<a class="nav-link nav-item-creator" href="creatorpage.html">Are you a creator? <span class="sr-only">(current)</span></a>
</li>
</ul>
<!-- <button class="btn abit-outline-purple my-2 my-sm-0" data-toggle="modal" data-target="#registerModal">Login / Signup</button> -->
</div>
</div>
</nav>
</header>
<div style="overflow: hidden;">
<section class="edit-creator-profile edit-profile-section">
<div class="container">
<div class="row">
<div class="col-md-3 offset-md-2">
<div class="creator-profile-img profile-img-wrapper">
<img src="img/creator-profile-pic.png" alt="profile image" style="width: 400px;">
</div>
</div>
<div class="col-md-4 offset-md-2">
<div class="creator-profile-edit-fields edit-fields-wrapper">
<div class="form-group">
<label for="username">User Name</label>
<input type="username" class="form-control" id="userName" aria-describedby="emailHelp" placeholder="User Name">
</div>
<div class="form-group">
<label for="bio">Bio</label>
<input type="bio" class="form-control" id="bioData" placeholder="Bio">
</div>
<div class="form-group">
<label for="updateEmail">Email</label>
<input type="updateEmail" class="form-control" id="updateEmail" aria-describedby="updateEmailHelp" placeholder="Email">
</div>
<div class="form-group">
<label for="updateContact">Contact</label>
<input type="updateContact" class="form-control" id="updateContact" placeholder="Contact">
</div>
<div class="form-group">
<label for="ytChannel">Youtube Channel</label>
<input type="ytChannel" class="form-control" id="ytChannel" aria-describedby="emailHelp" placeholder="Link">
</div>
<div class="form-group">
<label for="editPassword">Password</label>
<input type="Password" class="form-control" id="editPassword" placeholder="Password">
</div>
<div class="form-group">
<label for="confirmPassword">Confirm Password</label>
<input type="password" class="form-control" id="confirmPassword" placeholder="Confirm Password">
</div>
</div>
<button type="submit" class="btn neo-primary-btn abit-black abit-bg-yellow d-inline-flex cstm-btn-props">Save Changes</button>
<button type="submit" class="btn neo-primary-btn abit-black abit-bg-gray d-inline-flex cstm-btn-props">Go Back</button>
</div>
</div>
</div>
</section>
<footer class="mt-4 section-footer border-top">
<div class="container" style="margin-top: 76px;">
<div class="row">
<div class="col-lg-6 col-md-6 col-xs-4 col-sm-5 col-6">
<!-- <h3 class="heading">aBit</h3> -->
<p class="description">Own <span class="heading">aBit</span> of your favourite videos.</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-7 col-6">
<ul class="list-group border-left float-right">
<a href="index.html"><li class="list-group-item border-0">Home</li></a>
<a href="creatorpage.html"><li class="list-group-item border-0">Are you a creator?</li></a>
<!-- <li class="list-group-item border-0">Support</li> -->
</ul>
</div>
</div>
</div>
</footer>
</div>
<div w3-include-html="login.html"></div>
<div w3-include-html="register.html"></div>
<!-- Scripts -->
<script src="js/loadExtLibrary.js"></script>
<script src="js/waitlistModal.js"></script>
<script src="js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.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>
</body>
</html>