Redesign login
This commit is contained in:
parent
8b7d2cd799
commit
fea73ed963
1 changed files with 17 additions and 15 deletions
|
@ -24,25 +24,27 @@ if (isset($_POST['email'], $_POST['password'])) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$page->header();
|
$page->header();
|
||||||
|
$page->navigation();
|
||||||
?>
|
?>
|
||||||
<main>
|
<main>
|
||||||
<section>
|
<div class="ui container">
|
||||||
<h1>Login</h1>
|
<div class="ui segment">
|
||||||
|
<h1 class="ui header">Login</h1>
|
||||||
|
|
||||||
<form method="post">
|
<form class="ui form" method="post">
|
||||||
<fieldset>
|
<div class="field">
|
||||||
<label>Email</label>
|
<label>Email</label>
|
||||||
<input type="email" name="email" placeholder="john.doe@domain.tld" />
|
<input type="email" name="email" placeholder="john.doe@domain.tld" />
|
||||||
</fieldset>
|
</div>
|
||||||
|
<div class="field">
|
||||||
<fieldset>
|
|
||||||
<label>Password</label>
|
<label>Password</label>
|
||||||
<input type="password" name="password" />
|
<input type="password" name="password" />
|
||||||
</fieldset>
|
</div>
|
||||||
|
|
||||||
<input type="submit" value="Login" />
|
<input class="ui primary button" type="submit" value="Login" />
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</div>
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
Loading…
Reference in a new issue