forked from jeuelc/mworld-flat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
27 lines (26 loc) · 889 Bytes
/
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
<!-- i-C-a -->
<div id="profilepage" data-role="page">
<div style="width:70%;margin:auto;text-align:center;">
<div data-role="fieldcontain">
<label for="username">Fullname:</label>
<input type="text" id="username" name="username" value="imong nawong"><br>
</div>
<div data-role="fieldcontain">
<label for="username">Birthdate:</label>
<input type="text" id="username" name="username"><br>
</div>
<div data-role="fieldcontain">
<label for="username">Email:</label>
<input type="text" id="username" name="username"><br>
</div>
<input type="submit" value="Save" id="saveprofile" />
<input type="button" value="Back" id="backtoindex">
</div>
<script>
$(function() {
});
$('#backtoindex').on('tap', function() {
$.mobile.changePage('index.html', {transition: "flip"});
});
</script>
</div>