login feature is fully complete, testing is required, favorite teams database is fully functioning

This commit is contained in:
Vishal Vunnam
2024-04-19 19:19:42 -06:00
parent 86dbef4bf1
commit ac19be3cd9
6 changed files with 129 additions and 17 deletions

View File

@@ -1,6 +1,10 @@
<!-- Linking forms.css -->
<div class="login-page" id="login-page">
<div class="form-container" id="login-form">
<a>{{user.username}}</a>
</div>
</div>
<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}}
<span>{{this.teamname}}</span><br>
{{/each}}
</div>
</div>