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

18 lines
502 B
Handlebars
Raw Normal View History

2024-04-24 03:08:57 -06:00
<!-- Linking forms.css -->
2024-04-24 03:44:48 -06:00
<div class="account-portal-container" id="login-page">
2024-04-24 03:10:28 -06:00
2024-04-24 03:08:57 -06:00
<div class="form-container" id="login-form">
<a id="username">Username: {{user.username}}</a>
2024-04-24 03:44:48 -06:00
2024-04-24 03:08:57 -06:00
<a style="text-decoration: underline;">Favorite Teams:</a> <br>
2024-04-24 03:10:28 -06:00
2024-04-24 03:08:57 -06:00
{{#each fav_teams}}
<img id="teamlogo" src="{{this.teamlogo}}" alt="teamlogo">
<span>{{this.teamname}}</span> <br>
{{/each}}
2024-04-24 03:10:28 -06:00
2024-04-24 03:08:57 -06:00
<a class="nav-link" href="/logout">Logout</a>
</div>
2024-04-24 03:10:28 -06:00
2024-04-24 03:08:57 -06:00
</div>