Code and file framework updates

This commit is contained in:
Lucas Patenaude
2024-04-24 03:08:57 -06:00
parent 7581f679d8
commit af6f4fbe9f
9 changed files with 15 additions and 32 deletions

View File

@@ -0,0 +1,12 @@
<!-- Linking forms.css -->
<div class="login-page account-info-card" id="login-page">
<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="nav-link" href="/logout">Logout</a>
</div>
</div>