This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#164973542 Feature] add user logout and profile update
- Loading branch information
1 parent
da08e83
commit 20ae31e
Showing
9 changed files
with
335 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,15 @@ | |
<header> | ||
<div class="top"> | ||
<a href="../index.html"><img src="../img/banka-blue-logo.svg"/></a> | ||
<div class="current-user web-user"> | ||
<div class="current-user web-user dropdown"> | ||
<img class="avatar" src="../img/emeka [email protected]" /> | ||
<h4>Tejumola Peter</h4> | ||
<span>(admin)</span> | ||
<img class="arrow-down" src="../img/arrow-drop-down.svg" /> | ||
<div class="dropdown-content"> | ||
<a href="#" id="profile-button">Profile</a> | ||
<a href="../index.html">Logout</a> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
@@ -162,6 +166,51 @@ <h3>Create admin or user account</h3> | |
<button class="signup">Create</button> | ||
</div> | ||
</div> | ||
|
||
<div id="profileModal" class="modal"> | ||
<div class="onboarding-modal"> | ||
<img class="avatar" src="../img/emeka [email protected]" /> | ||
<input | ||
type="text" | ||
id="fname" | ||
name="fname" | ||
value="Timi" | ||
placeholder="First Name" | ||
disabled | ||
/> | ||
<input | ||
type="text" | ||
id="lname" | ||
name="lname" | ||
value="Tejumola" | ||
placeholder="Last Name" | ||
disabled | ||
/> | ||
<input | ||
type="text" | ||
id="email" | ||
name="email" | ||
value="[email protected]" | ||
placeholder="Email Address" | ||
disabled | ||
/> | ||
<input | ||
type="password" | ||
id="password" | ||
name="password" | ||
placeholder="Password" | ||
/> | ||
|
||
<input | ||
type="password" | ||
id="password" | ||
name="password" | ||
placeholder="Confirm Password" | ||
/> | ||
|
||
<button class="update">Update</button> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,15 @@ | |
<header> | ||
<div class="top"> | ||
<a href="../index.html"><img src="../img/banka-blue-logo.svg"/></a> | ||
<div class="current-user web-user"> | ||
<div class="current-user web-user dropdown"> | ||
<img class="avatar" src="../img/emeka [email protected]" /> | ||
<h4>Tejumola Peter</h4> | ||
<span>(admin)</span> | ||
<img class="arrow-down" src="../img/arrow-drop-down.svg" /> | ||
<div class="dropdown-content"> | ||
<a href="#" id="profile-button">Profile</a> | ||
<a href="../index.html">Logout</a> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
@@ -172,6 +176,51 @@ <h3>Create admin or user account</h3> | |
<button class="signup">Create</button> | ||
</div> | ||
</div> | ||
|
||
<div id="profileModal" class="modal"> | ||
<div class="onboarding-modal"> | ||
<img class="avatar" src="../img/emeka [email protected]" /> | ||
<input | ||
type="text" | ||
id="fname" | ||
name="fname" | ||
value="Peter" | ||
placeholder="First Name" | ||
disabled | ||
/> | ||
<input | ||
type="text" | ||
id="lname" | ||
name="lname" | ||
value="Tejumola" | ||
placeholder="Last Name" | ||
disabled | ||
/> | ||
<input | ||
type="text" | ||
id="email" | ||
name="email" | ||
value="[email protected]" | ||
placeholder="Email Address" | ||
disabled | ||
/> | ||
<input | ||
type="password" | ||
id="password" | ||
name="password" | ||
placeholder="Password" | ||
/> | ||
|
||
<input | ||
type="password" | ||
id="password" | ||
name="password" | ||
placeholder="Confirm Password" | ||
/> | ||
|
||
<button class="update">Update</button> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,15 @@ | |
<header> | ||
<div class="top"> | ||
<a href="../index.html"><img src="../img/banka-blue-logo.svg"/></a> | ||
<div class="current-user web-user"> | ||
<div class="current-user web-user dropdown"> | ||
<img class="avatar" src="../img/emeka [email protected]" /> | ||
<h4>Tejumola Peter</h4> | ||
<span>(cashier)</span> | ||
<img class="arrow-down" src="../img/arrow-drop-down.svg" /> | ||
<div class="dropdown-content"> | ||
<a href="#" id="profile-button">Profile</a> | ||
<a href="../index.html">Logout</a> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
@@ -156,6 +160,51 @@ <h3>Credit/Debit Account</h3> | |
<button class="submit">Submit</button> | ||
</div> | ||
</div> | ||
|
||
<div id="profileModal" class="modal"> | ||
<div class="onboarding-modal"> | ||
<img class="avatar" src="../img/emeka [email protected]" /> | ||
<input | ||
type="text" | ||
id="fname" | ||
name="fname" | ||
value="Peter" | ||
placeholder="First Name" | ||
disabled | ||
/> | ||
<input | ||
type="text" | ||
id="lname" | ||
name="lname" | ||
value="Tejumola" | ||
placeholder="Last Name" | ||
disabled | ||
/> | ||
<input | ||
type="text" | ||
id="email" | ||
name="email" | ||
value="[email protected]" | ||
placeholder="Email Address" | ||
disabled | ||
/> | ||
<input | ||
type="password" | ||
id="password" | ||
name="password" | ||
placeholder="Password" | ||
/> | ||
|
||
<input | ||
type="password" | ||
id="password" | ||
name="password" | ||
placeholder="Confirm Password" | ||
/> | ||
|
||
<button class="update">Update</button> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,14 +17,19 @@ | |
<header> | ||
<div class="top"> | ||
<a href="../index.html"><img src="../img/banka-blue-logo.svg"/></a> | ||
<div class="current-user web-user"> | ||
<div class="current-user web-user dropdown"> | ||
<img class="avatar" src="../img/emeka [email protected]" /> | ||
<h4>Tejumola Peter</h4> | ||
<span>(staff)</span> | ||
<span>(cashier)</span> | ||
<img class="arrow-down" src="../img/arrow-drop-down.svg" /> | ||
<div class="dropdown-content"> | ||
<a href="#" id="profile-button">Profile</a> | ||
<a href="../index.html">Logout</a> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<div class="banner"> | ||
<div class="balance"> | ||
<p>Created Accounts</p> | ||
|
@@ -146,6 +151,51 @@ <h3>1,000,000</h3> | |
</tr> | ||
</table> | ||
</div> | ||
|
||
<div id="profileModal" class="modal"> | ||
<div class="onboarding-modal"> | ||
<img class="avatar" src="../img/emeka [email protected]" /> | ||
<input | ||
type="text" | ||
id="fname" | ||
name="fname" | ||
value="Peter" | ||
placeholder="First Name" | ||
disabled | ||
/> | ||
<input | ||
type="text" | ||
id="lname" | ||
name="lname" | ||
value="Tejumola" | ||
placeholder="Last Name" | ||
disabled | ||
/> | ||
<input | ||
type="text" | ||
id="email" | ||
name="email" | ||
value="[email protected]" | ||
placeholder="Email Address" | ||
disabled | ||
/> | ||
<input | ||
type="password" | ||
id="password" | ||
name="password" | ||
placeholder="Password" | ||
/> | ||
|
||
<input | ||
type="password" | ||
id="password" | ||
name="password" | ||
placeholder="Confirm Password" | ||
/> | ||
|
||
<button class="update">Update</button> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.