-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccount.html
83 lines (82 loc) · 3.5 KB
/
Account.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
<!DOCTYPE html>
<head>
<title>Account</title>
<link href="Main.css" type="text/css" rel="stylesheet" />
<link href="styles.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</head>
<html>
<body>
<div id="nav">
</div>
<script>
$(function(){
$("#nav").load("Nav.html");
});
</script>
<div class="content">
<h1 class="mt-5 pt-5 text-center">
Account Settings
</h1>
<img src="Img/75-758282_walter-circle-person-photo-in-circle-hd-png.png" alt="Profile Picture" height="150" id="pfp">
<div id="entry">
<div class="act_row">
<p class="title_act">First Name:</p>
<p class="title_act">Last Name:</p>
</div>
<div class="act_row">
<input type="text" size="20" placeholder="First Name" class="textbox_act" id="act_box1">
<input type="text" size="20" placeholder="Last Name" class="textbox_act" id="act_box2">
</div>
<div class="act_row">
<p class="title_act">Email:</p>
</div>
<div class="act_row">
<input type="text" size="48" placeholder="Email" class="textbox_act">
</div>
<div class="act_row">
<p class="title_act">Phone Number:</p>
</div>
<div class="act_row">
<input type="text" size="48" placeholder="Phone Number" class="textbox_act">
</div>
<div class="act_row">
<p class="title_act">Street Address:</p>
</div>
<div class="act_row">
<input type="text" size="48" placeholder="Street Address" class="textbox_act">
</div>
<div class="act_row">
<p class="title_act">City:</p>
<p class="title_act" id="postal_code">Postal Code:</p>
</div>
<div class="act_row">
<input type="text" size="20" placeholder="City" class="textbox_act">
<input type="text" size="20" placeholder="Postal Code" class="textbox_act">
</div>
<div class="act_row">
<p class="title_act">State / Region:</p>
<p class="title_act">Country:</p>
</div>
<div class="act_row">
<input type="text" size="20" placeholder="State / Region" class="textbox_act">
<input type="text" size="20" placeholder="Country" class="textbox_act">
</div>
</div>
<div class="d-flex justify-content-center mt-3">
<a href="#" class="button btn-primary btn-lg active mt-3" role="button" aria-pressed="true" id="Act_button">Save Changes</a>
<a href="Reset.html" class="button btn-primary btn-lg active mt-3" role="button" aria-pressed="true" id="Act_button">Reset Password</a>
</div>
</div>
<div id="foot">
</div>
<script>
$(function(){
$("#foot").load("Footer.html");
});
</script>
</body>
</html>