17 lines
355 B
Plaintext
17 lines
355 B
Plaintext
@page "/login"
|
|
@using SpotiParty.Web.Services
|
|
|
|
<a class="button-primary" href="@_uri">Mit Spotify einloggen</a>
|
|
|
|
@inject AuthorizationHandler AuthHandler
|
|
|
|
@code {
|
|
|
|
private Uri _uri = null!;
|
|
|
|
protected override async Task OnInitializedAsync() {
|
|
await base.OnInitializedAsync();
|
|
_uri = await AuthHandler.ConstructLoginUri();
|
|
}
|
|
|
|
} |