mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-06 03:48:40 +00:00
Give register & login forms some color
This commit is contained in:
parent
be01f95ac8
commit
b7c5ccbf8c
3 changed files with 21 additions and 18 deletions
|
@ -23,7 +23,7 @@ namespace LBPUnion.ProjectLighthouse.Maintenance.MaintenanceJobs
|
||||||
|
|
||||||
foreach (Location location in locationsToRemove)
|
foreach (Location location in locationsToRemove)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Removing location" + location.Id);
|
Console.WriteLine("Removing location " + location.Id);
|
||||||
this.database.Locations.Remove(location);
|
this.database.Locations.Remove(location);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,14 +20,14 @@
|
||||||
<h1>Log in</h1>
|
<h1>Log in</h1>
|
||||||
<form onsubmit="return onSubmit(this)">
|
<form onsubmit="return onSubmit(this)">
|
||||||
<div class="ui left labeled input">
|
<div class="ui left labeled input">
|
||||||
<label for="text" class="ui label">Username: </label>
|
<label for="text" class="ui blue label">Username: </label>
|
||||||
<input type="text" name="username" id="text">
|
<input type="text" name="username" id="text">
|
||||||
</div><br>
|
|
||||||
|
|
||||||
<div class="ui left labeled input">
|
|
||||||
<label for="password" class="ui label">Password: </label>
|
|
||||||
<input type="password" name="password" id="password">
|
|
||||||
</div><br><br>
|
</div><br><br>
|
||||||
|
|
||||||
<input type="submit" value="Log in" id="submit" class="ui button"><br>
|
<div class="ui left labeled input">
|
||||||
|
<label for="password" class="ui blue label">Password: </label>
|
||||||
|
<input type="password" name="password" id="password">
|
||||||
|
</div><br><br><br>
|
||||||
|
|
||||||
|
<input type="submit" value="Log in" id="submit" class="ui green button"><br>
|
||||||
</form>
|
</form>
|
|
@ -23,16 +23,19 @@
|
||||||
<h1>Register</h1>
|
<h1>Register</h1>
|
||||||
<form onsubmit="return onSubmit(this)">
|
<form onsubmit="return onSubmit(this)">
|
||||||
<div class="ui left labeled input">
|
<div class="ui left labeled input">
|
||||||
<label for="text" class="ui label">Username: </label>
|
<label for="text" class="ui blue label">Username: </label>
|
||||||
<input type="text" name="username" id="text">
|
<input type="text" name="username" id="text">
|
||||||
</div><br>
|
|
||||||
<div class="ui left labeled input">
|
|
||||||
<label for="password" class="ui label">Password: </label>
|
|
||||||
<input type="password" name="password" id="password">
|
|
||||||
</div><br>
|
|
||||||
<div class="ui left labeled input">
|
|
||||||
<label for="password" class="ui label">Confirm Password: </label>
|
|
||||||
<input type="password" name="confirmPassword" id="confirmPassword">
|
|
||||||
</div><br><br>
|
</div><br><br>
|
||||||
<input type="submit" value="Register" id="submit" class="ui button"><br>
|
|
||||||
|
<div class="ui left labeled input">
|
||||||
|
<label for="password" class="ui blue label">Password: </label>
|
||||||
|
<input type="password" name="password" id="password">
|
||||||
|
</div><br><br>
|
||||||
|
|
||||||
|
<div class="ui left labeled input">
|
||||||
|
<label for="password" class="ui blue label">Confirm Password: </label>
|
||||||
|
<input type="password" name="confirmPassword" id="confirmPassword">
|
||||||
|
</div><br><br><br>
|
||||||
|
|
||||||
|
<input type="submit" value="Register" id="submit" class="ui green button"><br>
|
||||||
</form>
|
</form>
|
Loading…
Add table
Add a link
Reference in a new issue