-
Notifications
You must be signed in to change notification settings - Fork 2
/
profile.html
184 lines (158 loc) · 6.41 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Auctioner</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/flat-ui.css" rel="stylesheet">
<style type="text/css">
body
{
padding-top: 60px;
padding-bottom: 40px;
}
.ImageBox
{
border:1px solid red;
width: 150px;
height: 115px;
float: left;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" style="text-decoration:none;" href="home.html">HOME</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Auction<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="new_auction.html">New Auction</a></li>
<li class="divider"></li>
<li class="nav-header">Recent Auctions</li>
<li><a href="#">3G</a></li>
<li><a href="#">4G</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Bider<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">GP</a></li>
<li><a href="#">Banglalink</a></li>
<li><a href="#">Airtel</a></li>
<li><a href="#">Teletalk</a></li>
<li class="divider"></li>
<li class="nav-header">create new</li>
<li><a href="newBider.html">New Bider</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Product<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="newProduct.html">New Product</a></li>
<li class="nav-header">create new</li>
<li><a href="#">Bider 1</a></li>
<li><a href="#">Bider 2</a></li>
</ul>
</li>
</ul>
<form class="navbar-form pull-right inline">
<table>
<tr>
<td><i class="icon-user icon-white"></i></td>
<td>
<ul class="nav nav-pills">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
User
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="profile.html">Profile</a></li>
<li><a href="Login_new.html">Logout</a></li>
</ul>
</li>
</ul>
</td>
</tr>
</table>
</form>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container" align="center">
<h3 style="border:double; border-color:#006">AUCTIONER</h3>
<div class="row-fluid span12">
<!--
<div class="span2 ImageBox">
<img src="img/300x200.gif" alt="profile picture">
</div>
-->
<div class="span8">
<table cellpadding="10px">
<tr>
<td><label for="t_username">Username:</label></td>
<td><input type="text" id="username" value="X123"></td>
</tr>
<tr>
<td><label for="t_fname">Full name:</label></td>
<td><input type="text" id="fname" value="Mr. XXX Hasan"></td>
</tr>
<tr>
<td><label for="t_pic">Picture:</label></td>
<td><input type="file" id="pic" name="pic" accept="image/jpeg"></td>
</tr>
<tr>
<td><label for="t_email">Email:</label></td>
<td><input type="text" id="email" value="[email protected]"></td>
</tr>
<tr>
<td><label for="t_dis">Description:</label></td>
<td><textarea rows="4" cols="8" ></textarea></td>
</tr>
<tr>
<td><label for="t_pass">Password:</label></td>
<td><input type="password" id=""></td>
</tr>
</table>
<br>
</div>
</div>
<div align="center">
<input type="button" id="c_pass" value="Change Password" class="btn btn-primary">
<a href="home.html" class="btn btn-primary">Back</a>
</div>
</div>
<!-- Main hero unit for a primary marketing message or call to action -->
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-alert.js"></script>
<script src="js/bootstrap-modal.js"></script>
<script src="js/bootstrap-dropdown.js"></script>
<script src="js/bootstrap-scrollspy.js"></script>
<script src="js/bootstrap-tab.js"></script>
<script src="js/bootstrap-tooltip.js"></script>
<script src="js/bootstrap-popover.js"></script>
<script src="js/bootstrap-button.js"></script>
<script src="js/bootstrap-collapse.js"></script>
<script src="js/bootstrap-carousel.js"></script>
<script src="js/bootstrap-typeahead.js"></script>
</body>
</html>