forked from SouICry/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_accSetting.html
More file actions
84 lines (71 loc) · 3.32 KB
/
_accSetting.html
File metadata and controls
84 lines (71 loc) · 3.32 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
<div id="accSetting" class="container box text-center">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 userIcon" >
<!--<h2>Account Information</h2>-->
<div class = "row test">
<div class = "col-xs-12">
<div id="user-image-content" >
<img onclick="goToPage('_takeProfilePicture')" class="img-circle" id="accSettingAbove-img" src="placeholder/person4.png">
</div>
</div>
</div>
<div class = "row">
<div>
<a onclick="goToPage('_takeProfilePicture')">Edit Picture</a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 accProfile">
<!--<h2>Account Information</h2>-->
<div id="accProfile">
<form role="form" data-toggle="validator">
<div class="input-field">
<label for="accsetting_full_name" class=control-label">Full Name:</label>
<input type="text" class="form-control" id="accsetting_full_name">
</div>
<div class="input-field">
<label for="accsetting_email">Email:</label>
<input type="email" class="form-control" id="accsetting_email"
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,3}$">
</div>
<div class="input-field">
<label for="accsetting_phone">Phone Number:</label>
<input type="text" class="form-control bfh-phone" data-country="US"
id="accsetting_phone">
</div>
<!--<h2>Address</h2>-->
<div class="input-field">
<label for="accsetting_street">Street:</label>
<input type="text" class="form-control" id="accsetting_street">
</div>
<div class="input-field">
<label for="accsetting_city">City:</label>
<input type="text" class="form-control" id="accsetting_city">
</div>
<div class="input-field">
<label for="accsetting_state">State:</label>
<input type="text" class="form-control" id="accsetting_state">
</div>
<div class="input-field">
<label for="accsetting_zip">ZIP Code:</label>
<input type="number" class="form-control" id="accsetting_zip">
</div>
</form>
</div>
</div>
</div>
<div class="row input-filed">
<div class="col-s-6">
<div class="alert alert-danger fade in" id="accsetting_warning">
<strong>Danger!</strong> There are some empty fields!
</div>
<div class="btn waves-effects" id="accsetting_submit_info" type="submit">Update
</div>
</div>
</div>
</div>
<div class="footerBars container">
<div class="footer2"></div>
<div class="footer3"></div>
</div>
<script type="text/javascript" src="/js/_accSetting.js"></script>