Skip to content

Commit cb04296

Browse files
committed
Profile ui changes
1 parent 307267f commit cb04296

File tree

2 files changed

+106
-0
lines changed

2 files changed

+106
-0
lines changed

nbproject/project.xml

+3
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@
55
<data xmlns="http://www.netbeans.org/ns/php-project/1">
66
<name>Open e-Class (4.x)</name>
77
</data>
8+
<spellchecker-wordlist xmlns="http://www.netbeans.org/ns/spellchecker-wordlist/1">
9+
<word>adsfasdfasdf</word>
10+
</spellchecker-wordlist>
811
</configuration>
912
</project>

resources/views/main/profile/index.blade.php

+103
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,108 @@
118118
</div>
119119
</div>
120120
</div>
121+
122+
123+
<style>
124+
.profile-name
125+
{
126+
font-size: larger;
127+
font-weight: bold;
128+
line-height: 3;
129+
}
130+
131+
.profile-content-panel
132+
{
133+
font-size: 14px;
134+
margin: 25px 0;
135+
padding: 25px;
136+
background-color: #f5f5f5;
137+
}
138+
139+
.profile-content-panel-title
140+
{
141+
font-size: larger;
142+
color: #888;
143+
margin-bottom: 40px;
144+
}
145+
</style>
146+
147+
<div class="row">
148+
<div class="col-xs-12">
149+
<div class="panel panel-default">
150+
<div class="panel-body">
151+
<div class="inner-heading clearfix">
152+
<button class="btn btn-primary btn-sm pull-right">Button</button>
153+
</div>
154+
<div class="row">
155+
<div class="col-sm-6">
156+
<div class="row">
157+
<div class="col-xs-4">
158+
<div id='profile-avatar'>{!! $profile_img !!}</div>
159+
</div>
160+
<div class="col-xs8">
161+
<div class="profile-name">{{ $userdata->givenname }} {{ $userdata->surname }}</div>
162+
<div class='not_visible'><strong>{{ $userdata->username }}</strong></div>
163+
</div>
164+
</div>
165+
</div>
166+
<div class="col-sm-6">
167+
168+
</div>
169+
</div>
170+
<div class="row">
171+
<div class="col-sm-6">
172+
<div class="profile-content-panel">
173+
<div class="profile-content-panel-title">
174+
Personal Info
175+
</div>
176+
<div class="profile-content-panel-text">
177+
<div style="line-height:26px;"><span style="font-weight: bold; color: #888;">asdasdf</span>: adsfasdfasdf</div>
178+
<div style="line-height:26px;"><span style="font-weight: bold; color: #888;">asdasdf</span>: adsfasdfasdf</div>
179+
<div style="line-height:26px;"><span style="font-weight: bold; color: #888;">asdasdf</span>: adsfasdfasdf</div>
180+
<div style="line-height:26px;"><span style="font-weight: bold; color: #888;">asdasdf</span>: adsfasdfasdf</div>
181+
<div style="line-height:26px;"><span style="font-weight: bold; color: #888;">asdasdf</span>: adsfasdfasdf</div>
182+
<div style="line-height:26px;"><span style="font-weight: bold; color: #888;">asdasdf</span>: adsfasdfasdf</div>
183+
</div>
184+
</div>
185+
</div>
186+
<div class="col-sm-6">
187+
<div class="profile-content-panel">
188+
<div class="profile-content-panel-title">
189+
Description
190+
</div>
191+
<div class="profile-content-panel-text">
192+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vel venenatis odio. Sed condimentum cursus quam in mattis. Aliquam ut aliquam erat. Aliquam luctus lacinia auctor. Curabitur blandit augue id quam blandit, convallis aliquet magna vulputate. Sed nec urna lacus. Morbi sodales orci eget lacus imperdiet, non egestas justo lobortis. Praesent eget molestie eros. Proin euismod, augue id auctor iaculis, elit justo mattis nisl, tempor tincidunt diam dolor a lorem. Ve</p>
193+
</div>
194+
</div>
195+
</div>
196+
</div>
197+
</div>
198+
</div>
199+
</div>
200+
</div>
201+
202+
<div class="row">
203+
<div class="col-xs-12">
204+
<div class="panel panel-default">
205+
<div class="panel-body">
206+
<div class="row">
207+
<div class="col-sm-6">
208+
<div class="profile-content-panel-title">
209+
Delete Account
210+
</div>
211+
<div class="profile-content-panel-text">
212+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vel venenatis odio. Sed condimentum
213+
</div>
214+
</div>
215+
<div class="col-sm-6">
216+
<div class="center-block" style="display: inline-block; background-color: #aa9933; margin-top: 50px; border-radius: 3px; "><p style="padding: 15px 40px;" class="text-center">DELETE ACCOUNT</p></div>
217+
</div>
218+
</div>
219+
220+
</div>
221+
</div>
222+
</div>
223+
</div>
121224

122225
@endsection

0 commit comments

Comments
 (0)