generated from Templates_CodeFirst/templateHtmlCss
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.
64 lines
2.2 KiB
64 lines
2.2 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Slide Navbar</title>
|
|
<link rel="stylesheet" type="text/css" href="slide navbar style.css">
|
|
<link href="Style/signInStyle.css" rel="stylesheet">
|
|
</head>
|
|
|
|
|
|
<div class="container">
|
|
<div class="screen">
|
|
<div class="screen__content">
|
|
|
|
<form method="POST" name="goBackHome" id="GoHome">
|
|
<button class="boutonHome">
|
|
<span class="button__text">Go Home</span>
|
|
<input type="hidden" name="action" value="goHome"/>
|
|
<i class="button__icon fas fa-chevron-right"></i>
|
|
</button>
|
|
</form>
|
|
|
|
<form class="login" method="POST" name="signUpForm" id="signUpForm">
|
|
<div class="login__field">
|
|
<i class="login__icon fas fa-user"></i>
|
|
<input type="text" class="login__input" name="username" placeholder="Username">
|
|
</div>
|
|
<div class="login__field">
|
|
<i class="login__icon fas fa-lock"></i>
|
|
<input type="password" class="login__input" name="password" placeholder="Password">
|
|
</div>
|
|
<div class="login__field">
|
|
<i class="login__icon fas fa-lock"></i>
|
|
<input type="password" class="login__input" name="passwordconf" placeholder="Password confirmation">
|
|
</div>
|
|
<?php
|
|
if(!empty($dVueEreur)){
|
|
echo '<h4 id="error">'.$dVueEreur[0].'</h4>';
|
|
}
|
|
?>
|
|
<button class="button login__submit">
|
|
<span class="button__text">Sign up now</span>
|
|
<input type="hidden" name="action" value="signUp"/>
|
|
<i class="button__icon fas fa-chevron-right"></i>
|
|
</button>
|
|
</form>
|
|
<form class="droite" method="POST" name="signIn" id="SignIn">
|
|
<button class="bouton" type="submit">
|
|
<span class="button__text">Sign in</span>
|
|
<input type="hidden" name="action" value="accessSignIn"/>
|
|
<i class="button__icon fas fa-chevron-right"></i>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
<div class="screen__background">
|
|
<span class="screen__background__shape screen__background__shape4"></span>
|
|
<span class="screen__background__shape screen__background__shape3"></span>
|
|
<span class="screen__background__shape screen__background__shape2"></span>
|
|
<span class="screen__background__shape screen__background__shape1"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</html>
|