mirror of
https://github.com/dyzulk/dyzulk-apps.git
synced 2026-01-26 13:22:02 +07:00
update 0.0.1
This commit is contained in:
@@ -9,10 +9,35 @@
|
||||
<div class="grid gap-6 mb-8 md:grid-cols-2">
|
||||
<div
|
||||
class="min-w-0 p-4 bg-white rounded-lg shadow-xs dark:bg-gray-800"
|
||||
style="justify-content: center; align-items: center;"
|
||||
>
|
||||
<h4 class="mb-4 font-semibold text-gray-800 dark:text-gray-300">
|
||||
Your Profile
|
||||
</h4>
|
||||
<div class="relative">
|
||||
<form action="" method="post">
|
||||
<img
|
||||
class="profile-image"
|
||||
style="width: 150px; height: 150px;"
|
||||
src="<?= base_url('src/user/image/') . $user['image']; ?>"
|
||||
alt="Profile Picture"
|
||||
aria-hidden="true"
|
||||
/>
|
||||
<label
|
||||
for="profile-image"
|
||||
class="profile-label"
|
||||
>
|
||||
<i class="fas fa-camera text-white"></i>
|
||||
</label>
|
||||
<input id="profile-image" type="file" class="profile-input" accept="image/*">
|
||||
<button
|
||||
type="submit"
|
||||
class="mx-auto px-4 py-2 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-lg active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"
|
||||
>
|
||||
Save Changes
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user