You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
1 year ago
|
@page "/emailusernametab"
|
||
|
|
||
|
|
||
|
<form>
|
||
|
<div class="input-div">
|
||
|
<input type="text" id="emailId" class="input-box" placeholder="Email or User ID" autocomplete="username email" /><br />
|
||
|
<span class="hidden">x</span>
|
||
|
</div>
|
||
|
<div class="input-div">
|
||
|
<input type="password" id="password" class="input-box" placeholder="Password" autocomplete="current-password" /><br />
|
||
|
<span class="hidden">x</span>
|
||
|
</div>
|
||
|
<div class="input-div-check">
|
||
|
<input type="checkbox" id="rememberme-checkbox" name="rememberme-checkbox" class="input-box" /><br />
|
||
|
<label for="rememberme-checkbox">Remember me</label>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
<button type="button" class="sign-in-gbutton-colored" @onclick="Authenticate">
|
||
|
<div style="display: inline-flex;">
|
||
|
<i></i>
|
||
|
<span class="sign-in-gbutton-title">Sign In</span>
|
||
|
</div>
|
||
|
</button>
|
||
|
<a class="reset-link" @onclick="SwitchToSignUp">Sign Up</a>
|
||
|
|
||
|
@code {
|
||
|
|
||
|
private void Authenticate()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
private void SwitchToSignUp()
|
||
|
{
|
||
|
// You can use navigation logic to switch to the sign-up page.
|
||
|
}
|
||
|
}
|