This commit is contained in:
Francisco Rodriguez
2022-11-26 19:31:42 -07:00
parent db865ef49c
commit 77d2b02a92
9 changed files with 343 additions and 17 deletions

190
Templates/account/base.html Normal file
View File

@@ -0,0 +1,190 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--link rel="apple-touch-icon" type="image/png" href="https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png"-->
<meta name="apple-mobile-web-app-title" content="CodePen">
<!--link rel="shortcut icon" type="image/x-icon" href="https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico"-->
<link rel="icon" type="image/png" href="{% static 'favicon.ico' %}"/>
<link rel="mask-icon" type="" href="https://cpwebassets.codepen.io/assets/favicon/logo-pin-8f3771b1072e3c38bd662872f6b673a722f4b3ca2421637d5596661b4e2132cc.svg" color="#111">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<script src="{% static 'functions.js' %}" defer></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block extra_head %}
{% endblock %}
<style>
.main-content{
width: 50%;
border-radius: 20px;
box-shadow: 0 5px 5px rgba(0,0,0,.4);
margin: 5em auto;
display: flex;
}
.company__info{
background-color: #0959ed;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
color: #fff;
}
.fa-android{
font-size:3em;
}
@media screen and (max-width: 640px) {
.main-content{width: 90%;}
.company__info{
display: none;
}
.login_form{
border-top-left-radius:20px;
border-bottom-left-radius:20px;
}
}
@media screen and (min-width: 642px) and (max-width:800px){
.main-content{width: 70%;}
}
.row > h2{
color:#0959ed;
}
.login_form{
background-color: #fff;
border-top-right-radius:20px;
border-bottom-right-radius:20px;
border-top:1px solid #ccc;
border-right:1px solid #ccc;
}
form{
padding: 0 2em;
}
.form__input{
width: 100%;
border:0px solid transparent;
border-radius: 0;
border-bottom: 1px solid #aaa;
padding: 1em .5em .5em;
padding-left: 2em;
outline:none;
margin:1.5em auto;
transition: all .5s ease;
}
.form__input:focus{
border-bottom-color: #0959ed;
box-shadow: 0 0 5px rgba(0,80,80,.4);
border-radius: 4px;
}
.btn{
transition: all .5s ease;
width: 70%;
border-radius: 30px;
color:#0959ed;
font-weight: 600;
background-color: #fff;
border: 1px solid #0959ed;
margin-top: 1.5em;
margin-bottom: 1em;
margin-left: 45px;
justify-content: center;
}
.btn:hover, .btn:focus{
background-color: #0959ed;
color:#fff;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
#icon {
width:125px;
}
#container{
width: 300px;
}
ul{
list-style: none;
color: #0959ed;
font-weight: bold;
}
</style>
<script>
window.console = window.console || function(t) {};
</script>
<script>
if (document.location.search.match(/type=embed/gi)) {
window.parent.postMessage("resize", "*");
}
</script>
<title>{% block head_title %}{% endblock %}</title>
</head>
<body translate="no">
{% block body %}
{% if messages %}
{% for message in messages %}
{% endfor %}
{% endif %}
<!-- Main Content -->
<div class="container-fluid">
<div class="row main-content bg-success text-center">
<div class="col-md-4 text-center company__info">
<img class="center" src="https://aduanasoft.com/wp-content/uploads/2019/01/aslogo-1.png" id="icon" alt="User Icon" />
<h4 class="company_title">Aduanasoft</h4>
<h6><p><small>Automatizamos el comercio exterior</small></p></h6>
</div>
<div class="col-md-8 col-xs-12 col-sm-12 login_form ">
<div class="container-fluid">
{% block content %}
<div class="row">
{% block subtitlePage %}
{% endblock subtitlePage %}
</div>
{% endblock %}
{% if user.is_authenticated %}
<a href="{% url 'index' %}" id="back-btn" class="btn btn-info">back to main</a>
{% endif %}
</div>
</div>
</div>
</div>
{% endblock %}
{% block extra_body %}
{% endblock %}
<!--script src="{% static 'js/auth.js' %}"></script-->
</body>
</html>

View File

@@ -0,0 +1,46 @@
{% extends "account/base.html" %}
{% load widget_tweaks %}
{% load static %}
{% block head_title %}Login{% endblock %}
{% block extra_head %}
{% endblock extra_head %}
{% block content %}
{% block subtitlePage %}
<h2>Log In</h2>
{% endblock subtitlePage %}
<div class="row">
<form method="POST" action="{% url 'account_login' %}" class="form-group">
{% csrf_token %}
{{ form.non_field_errors }}
<div class="row">
{% render_field form.login autocomplete="off" placeholder=form.login.label class+="form-control mb-2" type="text" %}
{{form.login.errors}}
<!--input type="text" name="username" id="username" class="form__input" placeholder="Username"-->
</div>
<div class="row mb-3">
{{form.password|add_class:"form-control"}}
{{form.password.errors}}
<!-- <span class="fa fa-lock"></span> -->
<!--input type="password" name="password" id="password" class="form__input" placeholder="Password"-->
</div>
<div class="form-check">
<input type="checkbox" name="remember_me" id="remember_me" class="">
<label for="remember_me">Remember Me!</label>
</div>
<div class="row">
<input type="submit" value="Submit" class="btn">
</div>
</form>
</div>
<div class="row">
<p>Don't have an account? <a href="{{ signup_url }}">Register Here</a></p>
</div>
{% endblock %}