-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
156 lines (126 loc) · 6.26 KB
/
profile.html
File metadata and controls
156 lines (126 loc) · 6.26 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
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
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Favicons -->
<link rel="shortcut icon" sizes="16x16" href="assets/images/logo.png"/>
<meta charset="UTF-8">
<title>Helping Hands | Login</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/manual.css">
<link rel="stylesheet" href="assets/css/bootstrap-responsive.min.css">
<!-- Google fonts Poppins -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Fontello -->
<link rel="stylesheet" href="assets/css/css-fontello/animation.css" type="text/css"/>
<link rel="stylesheet" href="assets/css/css-fontello/fontello.css" type="text/css"/>
<link rel="stylesheet" href="assets/css/css-fontello/fontello-codes.css" type="text/css"/>
<link rel="stylesheet" href="assets/css/css-fontello/fontello-embedded.css" type="text/css"/>
<link rel="stylesheet" href="assets/css/css-fontello/fontello-ie7.css" type="text/css"/>
<link rel="stylesheet" href="assets/css/css-fontello/fontello-ie7-codes.css" type="text/css"/>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="page">
<!--=============================== Menu-Bar ========================-->
<div class="menuBar">
<nav class="navbar navbar-default ">
<div class="container p0">
<div class="navbar-header">
<div class="logo">
<a href="index.html" class="navbar-brand">
<img src="assets/images/logo.png" alt="Homepage logo">
<span>HELPING HANDS</span>
</a>
</div>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#navbar-menu">
<i class="fa fa-bars" aria-hidden="true"></i>
</button>
</div>
<div class="navbar-right">
<div id="navbar-menu" class="collapse navbar-collapse ">
<ul class="nav navbar-nav" data-in="fadeInDown" data-out="fadeOutUp">
<li><a href="{{ url_for('profile') }}">PROFILE</a></li>
<li>
<a href="{{ url_for('logout') }}">LOGOUT</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</div>
<script>
"use strict";
// ===================== Menu Bar ======================
$(document).ready(function(){
var pathname = window.location.pathname;
var page = pathname.split(/[/ ]+/).pop();
var menuItems = $('#navbar-menu a');
menuItems.each(function(){
var mi = $(this);
var miHrefs = mi.attr("href");
var miParents = mi.parents('li');
if(page == miHrefs) {
miParents.addClass("active").siblings().removeClass('active');
}
});
});
</script>
<!--=============================== Banner ==========================-->
<div class="banner" style="background-image: url('assets/images/pexels-photo-69096.jpg');background-repeat: no-repeat;background-attachment: fixed;
background-size: cover;">
<div class="shadow-main">
<h1> Your Profile</h1>
</div>
</div>
<!--========================== Login | Register =======================-->
<div class="main-contact">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 col-xs-12">
<div class="leave-reply">
<div class="form-login">
<h3> Details of Your Profile are as follows </h3>
<h4> Note that Details cannot be changed after Account Creation</h4>
<div class="form-group">
<input class="form-control" type="text" name="nm" value= "{{ nm }}" readonly/>
</div>
<div class="form-group">
<input class="form-control" type="text" name="email" value="{{ email }}" readonly/>
</div>
<div class="form-group">
<input class="form-control" type="text" name="contact" value="{{ contact }}" readonly/>
</div>
<div class="form-group">
<input class="form-control" type="text" name="password" value="{{ password }}" readonly/>
</div>
<button class="red-btn red-btn-form btn-login"><a href="/donate">Back to Donate</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
<!--=============================== Footer ===========================-->
<div id="footer"></div>
</div><!-- /.page -->
<!-- JS code -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/myScript.js"></script>
<script>
"use strict";
$('.message a').click(function () {
$('form.form-all').animate({height: "toggle", opacity: "toggle"}, "slow");
});
</script>
</body>
</html>