mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
45 lines
855 B
Plaintext
45 lines
855 B
Plaintext
|
@page
|
||
|
@model ProfileModel
|
||
|
@{
|
||
|
ViewData["Title"] = "Profile";
|
||
|
ViewData["Page"] = "profile";
|
||
|
ViewData["Description"] = "Have a look at your spotify info and logout of your account";
|
||
|
}
|
||
|
|
||
|
<table class="pure-table">
|
||
|
<thead>
|
||
|
<th>Key</th>
|
||
|
<th>Value</th>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>Id</td>
|
||
|
<td>@Model.Me.Id</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Uri</td>
|
||
|
<td>@Model.Me.Uri</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>DisplayName</td>
|
||
|
<td>@Model.Me.DisplayName</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Country</td>
|
||
|
<td>@Model.Me.Country</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Product</td>
|
||
|
<td>@Model.Me.Product</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>E-Mail (unverfied)</td>
|
||
|
<td>@Model.Me.Email</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<form method="post" asp-controller="Profile">
|
||
|
<input type="submit" value="Logout"/>
|
||
|
</form>
|