forked from lucaspatenaude/ScoreSpot
Basic account favorites card styled
This commit is contained in:
@@ -1,17 +1,25 @@
|
||||
<!-- 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>
|
||||
<div id="account-pane-content-container">
|
||||
|
||||
<a style="text-decoration: underline;">Favorite Teams:</a> <br>
|
||||
<div id="account-header-container">
|
||||
<a id="username">Hello, {{user.username}}</a>
|
||||
</div>
|
||||
|
||||
{{#each fav_teams}}
|
||||
<img id="teamlogo" src="{{this.teamlogo}}" alt="teamlogo">
|
||||
<span>{{this.teamname}}</span> <br>
|
||||
{{/each}}
|
||||
<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>
|
||||
|
||||
<a class="account-portal-button" id="logout-button" href="/logout">Logout</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user