-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
112 lines (105 loc) · 3.6 KB
/
Copy pathprofile.html
File metadata and controls
112 lines (105 loc) · 3.6 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Dataverse</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- nav -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Dataverse</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="home.html">Home</a></li>
<li><a href="profile.html">Profile</a></li>
<li><a href="#">Logout</a></li>
</ul>
</div>
</nav>
<!-- ./nav -->
<!-- main -->
<main class="container">
<div class="row">
<div class="col-md-3">
<!-- edit profile -->
<div class="panel panel-default">
<div class="panel-body">
<h4>Edit profile</h4>
<form method="post" action="">
<div class="form-group">
<input class="form-control" type="text" name="status" placeholder="Status" value="">
</div>
<div class="form-group">
<input class="form-control" type="text" name="location" placeholder="Location" value="">
</div>
<div class="form-group">
<input class="btn btn-primary" type="submit" name="update_profile" value="Save">
</div>
</form>
</div>
</div>
<!-- ./edit profile -->
</div>
<div class="col-md-6">
<!-- user profile -->
<div class="media">
<div class="media-left">
<img src="img/my_avatar.png" class="media-object" style="width: 128px; height: 128px;">
</div>
<div class="media-body">
<h2 class="media-heading">Sambaraj</h2>
<p>Status: I love IIT Guwhati!, Location: India</p>
</div>
</div>
<!-- user profile -->
<hr>
<!-- timeline -->
<div>
<!-- post -->
<div class="panel panel-default">
<div class="panel-body">
<p>Hello people! This is my first post.</p>
</div>
<div class="panel-footer">
<span>posted 2018-9-25 20:45:01 by Samba</span>
<span class="pull-right"><a class="text-danger" href="#">[delete]</a></span>
</div>
</div>
<!-- ./post -->
</div>
<!-- ./timeline -->
</div>
<div class="col-md-3">
<!-- friends -->
<div class="panel panel-default">
<div class="panel-body">
<h4>Friends</h4>
<ul>
<li>
<a href="#">Lokesh</a>
<a class="text-danger" href="#">[unfriend]</a>
</li>
</ul>
</div>
</div>
<!-- ./friends -->
</div>
</div>
</main>
<!-- ./main -->
<!-- footer -->
<footer class="container text-center">
<ul class="nav nav-pills pull-right">
<li>Dataverse - Made by Samba</li>
</ul>
</footer>
<!-- ./footer -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>