This repository has been archived by the owner on Sep 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editprofile.html
45 lines (45 loc) · 1.89 KB
/
editprofile.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
<!DOCTYPE html>
<html>
<head>
<title>Cloud V</title>
<link rel="stylesheet" type="text/css" href="Styles/style.css"></link>
<link rel="stylesheet" type="text/css" href="Styles/light.css"></link>
</head>
<body class='cloudy'>
<header>
<a href='index.html'><img src='Images/xxxs.png' class='logo' /></a>
<div class='headRight'>
<div class='search'>
<div class='back'></div>
<input placeholder='Search' />
</div><a href='myprofile.html' class='avatar'>
<div class='back'></div>
<div class='avatarImg' style='background-image: url(User/1.jpg);'></div>
</a>
</div>
</header>
<main>
<form class="editProfile">
Username: <br />
<input placeholder="Username" value="Karim" />
Description: <br />
<textarea placeholder="Description">This is Karim's personal description ;)</textarea>
<hr />
<br />
Set your profile picture
<div class='icon' style='background-image: url(User/1.jpg);'><input type='file' /><label></label></div>
<hr />
Old Password: <br />
<input placeholder="Old Password" type='password' />
New Password: <br />
<input placeholder="New Password" type='password' />
Verify new Password: <br />
<input placeholder="Verify New Password" type='password' />
<input type='submit' />
</form>
</main><footer>
© 2017 CloudV <a href='explore.html'>Explore</a> <a href='blog.html'>Blog</a> <a href='about.html'>About</a>
</footer>
<script src="Scripts/frontend.js"></script>
</body>
</html>