Files
JellySport/ProjectSourceCode/src/views/partials/navigation-bar/user-menu/account-screen.hbs

26 lines
790 B
Handlebars
Raw Normal View History

2024-04-24 03:08:57 -06:00
<!-- Linking forms.css -->
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">
2024-04-24 03:44:48 -06:00
2024-04-24 19:03:39 -06:00
<div id="account-header-container">
<a id="username">Hello, {{user.username}}</a>
</div>
2024-04-24 03:10:28 -06:00
2024-04-24 19:03:39 -06:00
<div id="login-form-container" class="form-container">
<a style="text-decoration: underline;">Favorite Teams:</a> <br>
{{#each fav_teams}}
<div class="favorite-teams-card">
<img id="teamlogo" src="{{this.teamlogo}}" alt="teamlogo">
<span>{{this.teamname}}</span> <br>
</div>
{{/each}}
<a class="account-portal-button" id="logout-button" href="/logout">Logout</a>
</div>
2024-04-24 03:10:28 -06:00
2024-04-24 03:08:57 -06:00
</div>
2024-04-24 03:10:28 -06:00
2024-04-24 03:08:57 -06:00
</div>