2024-04-24 18:46:31 -06:00
|
|
|
<div class="account-portal-container" id="account-pane">
|
2024-04-24 03:10:28 -06:00
|
|
|
|
2024-04-24 19:03:39 -06:00
|
|
|
<div id="account-pane-content-container">
|
|
|
|
|
<div id="account-header-container">
|
|
|
|
|
<a id="username">Hello, {{user.username}}</a>
|
2024-04-24 20:00:06 -06:00
|
|
|
|
|
|
|
|
<div class="logout-container">
|
|
|
|
|
<a id="logout-button" class="account-portal-button" href="/logout">Logout</a>
|
|
|
|
|
</div>
|
2024-04-24 19:03:39 -06:00
|
|
|
</div>
|
2024-04-24 03:10:28 -06:00
|
|
|
|
2024-04-24 20:33:40 -06:00
|
|
|
<div id="account-favorite-teams-container">
|
|
|
|
|
<a id="account-favorite-teams-header">Favorite Teams:</a>
|
2024-04-24 19:03:39 -06:00
|
|
|
|
|
|
|
|
{{#each fav_teams}}
|
2024-04-24 20:33:40 -06:00
|
|
|
<div class="account-favorite-teams-card">
|
|
|
|
|
<div class="account-favorite-teams-card-logo-container">
|
|
|
|
|
<img id="account-favorite-teams-card-logo" src="{{this.teamlogo}}" alt="teamlogo">
|
2024-04-24 20:00:06 -06:00
|
|
|
</div>
|
2024-04-24 19:03:39 -06:00
|
|
|
|
2024-04-24 20:33:40 -06:00
|
|
|
<span id="account-favorite-teams-card-title">{{this.teamname}}</span>
|
2024-04-24 20:06:02 -06:00
|
|
|
|
2024-04-24 20:33:40 -06:00
|
|
|
<div class="account-delete-favorite-team-button-container">
|
|
|
|
|
<img id="account-delete-favorite-team-account-button" src="/img/navigation-bar/user-menu/account-pane/delete-club.png" alt="Delete Favorite Team">
|
2024-04-24 20:06:02 -06:00
|
|
|
</div>
|
2024-04-24 20:00:06 -06:00
|
|
|
</div>
|
|
|
|
|
{{/each}}
|
2024-04-24 19:03:39 -06:00
|
|
|
</div>
|
2024-04-24 03:10:28 -06:00
|
|
|
|
2024-04-24 03:08:57 -06:00
|
|
|
</div>
|
|
|
|
|
</div>
|