Code fixes to make menus more unified

This commit is contained in:
Lucas Patenaude
2024-04-24 18:46:31 -06:00
parent e5ac576391
commit 77b33a0606
10 changed files with 37 additions and 18 deletions

View File

@@ -0,0 +1,17 @@
<!-- Linking forms.css -->
<div class="account-portal-container" id="account-pane">
<div class="form-container" id="login-form">
<a id="username">Username: {{user.username}}</a>
<a style="text-decoration: underline;">Favorite Teams:</a> <br>
{{#each fav_teams}}
<img id="teamlogo" src="{{this.teamlogo}}" alt="teamlogo">
<span>{{this.teamname}}</span> <br>
{{/each}}
<a class="account-portal-button" id="logout-button" href="/logout">Logout</a>
</div>
</div>