-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-account.php
54 lines (48 loc) · 1.85 KB
/
my-account.php
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
<?php include 'php/templates/header.php'; ?>
<div class="ui text container">
<p> </p>
<div class="ui grid">
<?php if(isset($_GET['welcome'])) { ?>
<div class="sixteen wide column">
<h2 class="ui icon center aligned teal header">
<i class="child icon"></i>
<div class="content">
Yeah! Thanks for join us!
</div>
<div class="sub header">
In this place, you can describe who you are, or what kind of the boat you have.
</div>
</h2>
</div>
<?php } ?>
<div class="sixteen wide column">
<h2 class="ui teal header">
<i class="user icon"></i>
<div class="content">
Account settings
</div>
</h2>
</div>
<div class="sixteen wide column">
<div class="ui teal cards">
<a href="profile.php?edit=true" class="link card">
<div class="content">
<div class="header"><i class="edit icon"></i>Edit profile</div>
<div class="description">
I wanna edit my profile.
</div>
</div>
</a>
<a href="change-password.php" class="link card">
<div class="content">
<div class="header"><i class="lock icon"></i>Change password</div>
<div class="description">
I wanna change my old password to a new password.
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<?php include 'php/templates/footer.php'; ?>