Created
August 31, 2014 15:07
-
-
Save CapnKernel/e3b3ff98735465a4d08a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% extends "layout.html" %} | |
| {% block content %} | |
| <div class="video"> | |
| <iframe width="560" height="315" src="//w " frameborder="0" allowfullscreen></iframe> | |
| </div> | |
| <i class="ba girl"></i> | |
| <i class="ba boy"></i> | |
| <i class="ba onio"></i> | |
| <a href="#" target="_blank" class="botao-market bt-appstore">Disponível na AppStore</a> | |
| <a href="#" target="_blank" class="botao-market bt-google-play">Disponível na Google Play</a> | |
| <div class="text"> | |
| <p>UAAAA<br> | |
| <p class="destaque"> My Site.</p> | |
| </div> | |
| {% endblock %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% load i18n %}<!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <link rel="author" href="humans.txt"> | |
| <title>My Site </title> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <meta name="keywords" content=" "> | |
| <!--[if lt IE 9]> | |
| <script src="assets/plugins/html5shiv.js"></script> | |
| <![endif]--> | |
| <link href="{{ STATIC_URL }}_lib/styles/reset.min.css" rel="stylesheet" type="text/css"> | |
| <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> | |
| <link href="http://fonts.googleapis.com/css?family=Slackey|Open+Sans:400,400italic,600,600italic,700,700italic,800,800italic" rel="stylesheet" type="text/css"> | |
| <link href="{{ STATIC_URL }}_lib/styles/main.css" rel="stylesheet" type="text/css"> | |
| <script> | |
| function setHeight(){ | |
| var ws = window.innerHeight; | |
| // alert(ws); | |
| document.getElementById('body').style.height=ws+'px'; | |
| } | |
| window.onload = function(){setHeight()}; | |
| </script> | |
| </head> | |
| <body id="body" {% block bodyclass %}class="page-home"{% endblock %}> | |
| <nav> | |
| <span class="menu-trigger"> | |
| <i class="fa fa-bars"></i> | |
| </span> | |
| <ul id="menu-mobile"> | |
| <li><a href="index.php">Início</a></li> | |
| <li><a href="cadastro.php">Cadastro</a></li> | |
| <li><a href="sobre.php">Sobre</a></li> | |
| <li><a href="politica-de-privacidade.php">Política de Privacidade</a></li> | |
| <li><a href="contrato-de-licenca.php">Licença</a></li> | |
| <li><a href="faq.php">Ajuda</a></li> | |
| </ul> | |
| <a href="login.php" class="bt-login">Acesse sua conta</a> | |
| </nav> | |
| <header> | |
| <div class="container_largura"> | |
| <a href="./" class="logo-anchor"><img src="{{ STATIC_URL }}_lib/images/logo.png" alt="my Logo" class="logo-img"></a> </div> | |
| </header> | |
| <section class="conteudo"> | |
| {% block content %}{% endblock %} | |
| </section> | |
| <div class="ilustracao_pre_footer"> | |
| <!-- --> | |
| </div> | |
| <footer> | |
| <div class="container_largura"> | |
| <span class="kids"></span> | |
| <nav> | |
| <ul> | |
| <li><a href="index.php">Início</a></li> | |
| <li><a href="cadastro.php">Cadastro</a></li> | |
| <li><a href="sobre.php">Sobre</a></li> | |
| <li><a href="politica-de-privacidade.php">Política de Privacidade</a></li> | |
| <li><a href="contrato-de-licenca.php">Licença</a></li> | |
| <li><a href="faq.php">Ajuda</a></li> | |
| </ul> | |
| </nav> | |
| <ul class="social"> | |
| <li><a href="mailto:suporte@mysite.com.br" target="_blank"><i class="fa fa-envelope"></i></a></li> | |
| <li><a href="https://" target="_blank"><i class="fa fa-google-plus"></i></a></li> | |
| <li><a href="#" target="_blank"><i class="fa fa-facebook"></i></a></li> | |
| </ul> | |
| </div> | |
| </footer> | |
| <script src="{{ STATIC_URL }}_lib/scripts/browser_selector.js"></script> | |
| <script src="{{ STATIC_URL }}_lib/scripts/jquery-2.1.1.min.js"></script> | |
| <script src="{{ STATIC_URL }}_lib/scripts/main.js"></script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% extends "layout.html" %} | |
| {% block bodyclass %}class="page-login"{% endblock %} | |
| {% block content %} | |
| <h1>Faça seu login</h1> | |
| <form action="" method="" class="form_login"> {% csrf_token %} | |
| <fieldset> | |
| <div class="cc"> | |
| <label for="cad_email">E-mail</label> | |
| {{ credentials.email }} | |
| </div> | |
| <div class="cc"> | |
| <label for="cad_senha">Senha</label> | |
| <input placeholder="Sua senha" type="password" name="cad_senha" id="cad_senha" required> | |
| </div> | |
| <div class="cc"> | |
| <p>Esqueceu a senha? <a href="esqueci-senha.php">Clique aqui</a>.</p> | |
| </div> | |
| <div class="cc cta"> | |
| <input type="submit" value="Enviar"> | |
| </div> | |
| </fieldset> | |
| </form> | |
| </div> | |
| {% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment