Project for the UPV to develop an app like BlaBlaCar but only for UPV people.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixed #4

-20
-20
upvcarshare/templates/users/sign_in.html
··· 13 13 {% block content %} 14 14 <div class="row"> 15 15 <div class="col-xs-12"> 16 - <form method="post" action=""> 17 - {% csrf_token %} 18 - {% for field in form %} 19 - <div class="form-group row{% if field.errors %} has-danger{% endif %}"> 20 - <label for="{{ field.auto_id }}" class="col-sm-2 form-control-label">{{ field.label }}</label> 21 - <div class="col-sm-10"> 22 - {{ field }} 23 - <span class="text-muted">{{ field.help_text }}</span> 24 - <span class="text-muted">{{ field.errors }}</span> 25 - </div> 26 - </div> 27 - {% endfor %} 28 - <div class="form-group row"> 29 - <div class="col-sm-offset-2 col-sm-10"> 30 - <button type="submit" class="btn btn-primary">{% trans "Entrar" %}</button> 31 - </div> 32 - </div> 33 - </form> 34 - 35 16 <a href="{% provider_login_url "openid" openid="https://yo.rediris.es/soy/@upv.es" next=next %}" class="btn btn-primary"> 36 17 {% trans "Acceso con credenciales UPV" %} 37 18 </a> 38 - 39 19 </div> 40 20 </div> 41 21 {% endblock content %}