-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
146 lines (142 loc) · 4.03 KB
/
profile.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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>splash screen</title>
<link rel="stylesheet" type="text/css" href="bootstrap-4.0.0-dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="fa-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/loader.css">
<style type="text/css">
body {
height: 100%;
width: auto;
background-color: #dc3545;
font-family: 'Times New Roman';
}
#main {display:none;}
.text-fadeIn {display: none;}
/*.loader {display: none;}*/
.centered {
position: fixed;
top: 50%;
left: 45%;
transform: translate(-50%, -50%);
}
.navbar {
overflow: hidden;
background-color: #333;
position: fixed;
bottom: 0;
width: 100%;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 8px 10px;
text-decoration: none;
font-size: 10px;
}
.navbar a:hover {
background: #f1f1f1;
color: black;
}
.font-20 {
font-size: 20px !important;
}
.border-bottom-black {
border: none !important;
border-bottom: 2px solid #000 !important;
}
input {
font-weight: bold;
font-size: 18px;
border-radius: 0px !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
.padding-5 {padding: 5px;}
.shadow-bottom {box-shadow: 0px 2px 3px white;}
.bg-dark {background-color: #333 !important;}
</style>
</head>
<body>
<div class="centered" id="splash">
<div class="loader"></div>
</div>
<div id="main">
<div class="">
<div class="text-center padding-5 bg-dark text-light shadow-bottom">
<div class="container">
<div class="mt-2 mb-2">
<div>
<img src="img/CIS-logo.png" class="img img-circle float-left" height="40" width="40"> <span class="font-20">User's Info</span>
</div>
</div>
</div>
</div>
<div class="container mt-5" style="max-height: auto; overflow: auto;padding-bottom: 100px;">
<form class="form">
<div class="form-group">
<label>Username</label>
<input type="text" class="form-control border-bottom-black">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" class="form-control border-bottom-black">
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control border-bottom-black">
</div>
<div class="form-group">
<label>Contact</label>
<input type="number" class="form-control border-bottom-black">
</div>
<div class="form-group">
<label>Address</label>
<textarea class="form-control"></textarea>
</div>
<div class="form-group">
<label>Profile photo</label>
<input type="file" class="form-control">
</div>
<div class="form-group">
<button class="btn btn-outline-light btn-block"><i class="fa fa-save"></i> Save</button>
</div>
</form>
</div>
</div>
<div class="fixed-bottom">
<div class="navbar">
<a href="home.html" class="active"><span class="fa fa-home font-20"></span></a>
<a href="profile.html"><span class="fa fa-user font-20"></span></a>
<a href="post.html"><span class="fa fa-plus font-20"></span></a>
<a href="chat.html"><span class="fa fa-envelope font-20"></span></a>
<a href="#settings"><span class="fa fa-gear font-20"></span></a>
</div>
</div>
</div>
<script type="text/javascript" src="bootstrap-4.0.0-dist/js/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap-4.0.0-dist/js/popper.min.js"></script>
<script type="text/javascript" src="bootstrap-4.0.0-dist/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// setTimeout(function(){
$("#main").fadeIn(1000);
$(".loader").fadeOut(1000);
// }, 3000);
});
</script>
</body>
</html>