-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
95 lines (82 loc) · 2.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
a {
font-size: 17px;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="https://cdn.staticfile.org/twitter-bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script
src="https://cdn.staticfile.org/popper.js/1.12.5/umd/popper.min.js"></script>
<script
src="https://cdn.staticfile.org/twitter-bootstrap/4.1.0/js/bootstrap.min.js"></script>
<script src="./scripts/login.js"></script>
<script src="./scripts/profile.js"></script>
<script src="./scripts/login.js"></script>
<title>Profile</title>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="shop.html">Shop</a>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="shopping_cart.html">Shopping Cart</a></li>
</ul>
</nav>
<div class="jumbotron "
style="background: linear-gradient(#AD0101, #840202);">
<div class="container">
<img src="images/logo.png" style="height: 80px" /><br /> <span
style="color: white; font-size: 35px">My Account</span>
</div>
</div>
<h2 id="userInfo"></h2>
<div class="card" id="userInfo" style="width: 900px; left: 300px;">
<div class="card-header" style="font-size: 26px">Account
Information</div>
<div class="card-body" id="innerbody">
<img src="images/photo.jpg" style="width: 120px; margin-left: 370px" /><br />
<br />
<div>
<div style="float: left; margin-left: 290px">Name:
</div>
<input type="text" id="name" readonly class="form-control"
style="width: 200px; float: left">
</div>
<br /> <br />
<div>
<div style="float: left; margin-left: 290px">Email:
</div>
<input type="text" id="email" readonly class="form-control"
style="width: 200px; float: left">
</div>
<br /> <br /> <br />
<div>
<div style="float: left; margin-left: 195px">Credit Card on File:
</div>
<input type="text" id="creditCard" readonly class="form-control"
style="width: 200px; float: left">
</div>
</div>
<div>
<form action="./shop.html" style="float: left; margin-left: 310px">
<input type="submit" value="Continue Shopping"
class="btn btn-primary" />
</form>
<div style="width: 30px; height: 50px; float: left"></div>
<form action="./shop.html" onsubmit="return logOut()"
style="float: left">
<input type="submit" value="Sign Out" class="btn btn-default" />
</form>
</div>
<br />
</div>
<br />
<br />
<br />
</body>
</html>