78 lines
3.1 KiB
HTML
78 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pl-PL">
|
|
<!--html lang="en">-->
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Python Flask App</title>
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="signup.css">
|
|
<!-- <link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet"> -->
|
|
|
|
<link href="http://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css" rel="stylesheet">
|
|
<link href="../static/css/signup.css" rel="stylesheet">
|
|
<script src="../static/js/jquery-1.12.3.js"></script>
|
|
<!-- <script> -->
|
|
<!-- window.fbAsyncInit = function() { -->
|
|
<!-- FB.init({ -->
|
|
<!-- appId : '919664238236955', -->
|
|
<!-- autoLogAppEvents : true, -->
|
|
<!-- xfbml : true, -->
|
|
<!-- version : 'v3.2' -->
|
|
<!-- }); -->
|
|
<!-- }; -->
|
|
|
|
<!-- (function(d, s, id){ -->
|
|
<!-- var js, fjs = d.getElementsByTagName(s)[0]; -->
|
|
<!-- if (d.getElementById(id)) {return;} -->
|
|
<!-- js = d.createElement(s); js.id = id; -->
|
|
<!-- js.src = "https://connect.facebook.net/en_US/sdk.js"; -->
|
|
<!-- fjs.parentNode.insertBefore(js, fjs); -->
|
|
<!-- }(document, 'script', 'facebook-jssdk')); -->
|
|
<!-- </script> -->
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="header">
|
|
<nav>
|
|
<ul class="nav nav-pills pull-left">
|
|
<li role="presentation" class="active"><a href="javascript:history.back()">Wstecz</a>
|
|
</li>
|
|
<li role="presentation" class="active"><a href="showSignInENG">ENG</a>
|
|
</li>
|
|
</ul>
|
|
<ul class="nav nav-pills pull-right">
|
|
<li role="presentation" ><a href="/">Strona główna</a></li>
|
|
<li role="presentation" class="active"><a href="#">Zaloguj się</a></li>
|
|
<!-- <li role="presentation" ><a href="/showSignUp">Zarejestruj się</a></li> -->
|
|
</ul>
|
|
</nav>
|
|
<h3 class="text-muted"><center>Python Flask</center></h3>
|
|
</div>
|
|
|
|
<div class="jumbotron">
|
|
<h1>Aplikacja Testowa</h1>
|
|
<form class="form-signin" action="/validateLogin" method="post">
|
|
<label for="inputLogin" class="sr-only">Nazwa użytkownika</label>
|
|
<input type="text" name="inputLogin" id="inputLogin" class="form-control" placeholder="Wpisz nazwę" required autofocus>
|
|
<label for="inputPassword" class="sr-only">Hasło</label>
|
|
<input type="password" name="inputPassword" id="inputPassword" class="form-control" placeholder="Wpisz hasło" required>
|
|
<input type="submit" value="Zaloguj się normalnie"></input>
|
|
<!-- <button id="btnSignIn" class="btn btn-lg btn-primary btn-block" type="submit">Potwierdź logowanie</button> -->
|
|
</form>
|
|
<form class="form-signin" action="/signInWithFace" method="get">
|
|
<input type="submit" value="Zaloguj się za pomocą twarzy"></input>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
|
|
<footer class="footer">
|
|
<p>© UAM 2018</p>
|
|
</footer>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |