-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EJS implementation on the user's card in shiftTracker
- Loading branch information
Showing
5 changed files
with
26 additions
and
23 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,17 @@ | |
<div class="header"> | ||
<div class="left-box"> | ||
<img src="/pictures/waiter.png" alt="" /> | ||
<button id="usernameButton"><p>Evrim Ciftci</p></button> | ||
<button id="usernameButton"><p><%= userName %></p></button> | ||
<div id="userInfoBox"> | ||
<div class="companyInfo"> | ||
<span id="company">Company: CoffeeCollab </span> | ||
<span id="manager">Manager: Henrique sagara </span> | ||
<!-- <span id="manager">Manager: Henrique sagara </span> --> | ||
</div> | ||
<div class="userInfo"> | ||
<span id="firstName">First Name: Evrim </span> | ||
<span id="lastName">Last Name: Ciftci </span> | ||
<span id=" email">email: [email protected] </span> | ||
<span id="phoneNumber">Phone Number: +1 6558 5885 58 </span> | ||
<span id="firstName">Name: <%=userName%> </span> | ||
<!-- <span id="lastName">Last Name: Ciftci </span> --> | ||
<span id=" email">email: <%=userEmail%> </span> | ||
<span id="phoneNumber">Phone Number: <%= userPhone%> </span> | ||
</div> | ||
</div> | ||
</div> | ||
|