-
Notifications
You must be signed in to change notification settings - Fork 1
/
edit.html
146 lines (132 loc) · 6.16 KB
/
edit.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>The Vibe</title>
<link rel="icon" href="assets/img/logo-icon.png">
<!-- Stylesheet Link -->
<link rel="stylesheet" type="text/css" href="assets/css/custom.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-icon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no" name="viewport">
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<!-- CSS Files -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/now-ui-kit.css?v=1.1.0" rel="stylesheet">
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="assets/css/demo.css" rel="stylesheet">
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<img class="logo1" src="assets/img/v.svg" alt="">
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
</div>
<div class="collapse navbar-collapse justify-content-end" id="example-navbar-icons">
<ul class="navbar-nav">
<div class="navbar-nav">
<span class="sr-only">(current)</span>
<a class="nav-item nav-link" id="search-button" href="results.html">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</div>
<li class="nav-item">
<a class="nav-link" href="index.html">
<i class="now-ui-icons users_single-02" aria-hidden="true"></i>
</a>
</li>
<li class="nav-item dropdown">
<a href="index.html" class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown">
<i class="now-ui-icons ui-1_settings-gear-63" aria-hidden="true"></i>
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-header">Settings</a>
<a class="dropdown-item" href="view.html">Edit Page</a>
<button type="button" name="button">
<a id="sign-out-button" class="dropdown-item">Sign Out</a>
</button>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- /.navbar -->
<!-- container -->
<div class="container mt-5">
<div id="profile" class="row">
<div class="col-lg-4">
<img id="profile-pic" class="rounded-circle img-fluid img-raised" alt="">
</div>
<div class="col-lg-8">
<!-- User Name -->
<h4 id="user-name" class="display-4 mt-4"></h4>
<!-- Change Profile Photo -->
<h6 class="display-5 mt-4">Change Photo</h6>
<div class="form-group">
<input type="text" class="form-control" id="update-profile-pic" placeholder="Add url here">
</div>
<!-- Change Location -->
<div class="form-group">
<img class="map-icon-edit" width="15px" height="15px" src="assets/img/mapicon.png">
<h6 class="display-5 mt-4">Change Location</h6>
<input type="text" class="form-control" id="update-location" placeholder="Change location">
</div>
</div>
</div>
<!-- Bio -->
<div class="row mt-4">
<div class="col-lg-12">
<h6 class="display-5 mt-3 update-titles">Change Bio</h6>
<div class="form-group">
<textarea class="form-control" id="bio-form" rows="3" placeholder="Update here..."></textarea>
</div>
</div>
</div>
<!-- Save Button for Text Area Updates -->
<div class="row">
<button id="save-button" type="button" class="btn btn-outline-success">
<a href="index.html"></a>Update Profile</button>
</div>
<!-- Media -->
<div class="row">
<div class="col-lg-12">
<h6 class="display-5 mt-3 update-titles">Change Media</h6>
<div class="form-group">
<input type="text" class="form-control" id="upload-image" placeholder="Add image url here">
<input type="text" class="form-control" id="upload-video" placeholder="Add video url here">
<input type="text" class="form-control" id="upload-media-title" placeholder="Media Title">
<input type="text" class="form-control" id="upload-media-description" placeholder="Media Description">
</div>
</div>
</div>
<!-- Save Button for Text Area Updates -->
<div class="row">
<button id="save-media-button" type="button" class="btn btn-outline-success">
<a href="index.html"></a>Upload Media</button>
</div>
<!-- Preview Existing Media -->
<div class="row mb-5">
<div class="col-lg-12">
<h6 class="display-5 mt-3 update-titles">Preview Media</h6>
<div class="row user-media">
</div>
</div>
</div>
</div>
<!-- /.container -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="assets/js/update.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>