forked from Clrkz/VPSAutoScrptz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setting.html
93 lines (82 loc) · 3.5 KB
/
setting.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
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
User Profile
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Dashboard</a></li>
<li class="active">Profile</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-4">
<!-- Profile Image -->
<div class="box box-primary">
<div class="box-body box-profile">
<img class="profile-user-img img-responsive img-circle" src="http://i.imgur.com/TbL3fe6.png" alt="User profile picture">
<h3 class="profile-username text-center">{{ @me->firstname }} {{ @me->lastname }}</h3>
<p class="text-muted text-center">{{ @me->type==1?'Admin':'Reseller' }}</p>
<ul class="list-group list-group-unbordered">
<li class="list-group-item">
<b>Username</b> <a class="pull-right">{{ @me->username }}</a>
</li>
<li class="list-group-item">
<b>Email</b> <a class="pull-right">{{ @me->email }}</a>
</li>
<li class="list-group-item">
<b>Balance RM</b> <a class="pull-right">{{ @me->saldo }}</a>
</li>
</ul>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
<!-- /.col -->
<div class="col-md-8">
<check if="{{ @message }}">
<div class="alert alert-danger alert-dismissible">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<h4><i class="icon fa fa-warning"></i>Alert!</h4>
{{ @message['data'] }}
</div>
</check>
<!--
<div class="box box-danger">
<div class="box-header with-border">
<i class="fa fa-cog fa-spin"></i><h3 class="box-title">Change Password</h3><h4>Disabled by Admin</4>
</div>
<!-- /.box-header -->
<!-- form start -->
<!--<form role="form" action="{{ @URI }}" method="POST">
<div class="box-body">
<div class="form-group">
<label>Old Password</label>
<input class="form-control" placeholder="Old Password" name="oldpass" type="password" required>
</div>
<div class="form-group">
<label>New Password</label>
<input class="form-control" placeholder="New Password" name="password" type="password" required>
</div>
<div class="form-group">
<label>Re-enter New Password</label>
<input class="form-control" placeholder="Re-enter New Password" name="password_confirmation" type="password" required>
</div>
</div>
<button type="submit" class="btn btn-primary fa fa-cubes"> CHANGE</button> -->
<!-- /.box-body -->
</form>
<div class="box-footer">
</div>
</div>
<!-- /.box -->
</div>
</div>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->