chgpt / templates /no_access.html
Miguel Diaz
Update assistant + google oauth + google search
9c5c050
<!DOCTYPE html>
<html lang="ES">
<head>
<title>En espera</title>
<style>
html,
body {
background: #f1f1f1;
font-family: "Merriweather", sans-serif;
padding: 1em;
}
h1 {
text-align: center;
color: #a8a8a8;
}
form {
max-width: 600px;
text-align: center;
margin: 20px auto;
}
form input, form textarea {
border: 0;
outline: 0;
padding: 1em;
display: block;
width: 100%;
margin-top: 1em;
font-family: "Merriweather", sans-serif;
resize: none;
}
#input-submit {
color: white;
background: #000;
cursor: pointer;
}
textarea {
height: 126px;
}
</style>
</head>
<body>
{% if not description %}
<h1>Dime quien eres y quien te dio el link</h1>
<form class="cf" method="POST", action="/hold">
<div class="half cf">
<textarea name="message" type="text" id="input-message" placeholder="Message"></textarea>
<input type="submit" value="Submit" id="input-submit">
</div>
</form>
{% else %}
<h1>Aun no te he aprobado, avisame y espera</h1>
{% endif %}
</body>