source: seguimiento_proyectos/sepai/templates/404.html @ bc9d913

desarrollo
Last change on this file since bc9d913 was 0391bfa, checked in by lhernandez <lhernandez@…>, 7 años ago

Estable el login de la plataforma, creado los permisos para los grupos de usuario, se desarrollo las funcionalidades para el control de usuario para los administradores del sitio

  • Propiedad mode establecida a 100755
File size: 1.7 KB
Línea 
1{% extends "starter.html" %}
2{% block titulo %}_-=SEPAI-ERROR 404=-_{% endblock titulo %}
3{% block content %}
4  <!-- Content Wrapper. Contains page content -->
5  <div class="content-wrapper">
6    {% block content_header %}
7    <!-- Content Header (Page header) -->
8    <section class="content-header">
9      <h1>
10        404 Error Page
11      </h1>
12      <ol class="breadcrumb">
13        <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
14        <li><a href="#">Examples</a></li>
15        <li class="active">404 error</li>
16      </ol>
17    </section>
18  {% endblock content_header %}
19  {% block content_main %}
20    <!-- Main content -->
21    <section class="content">
22      <div class="error-page">
23        <h2 class="headline text-yellow"> 404</h2>
24
25        <div class="error-content">
26          <h3><i class="fa fa-warning text-yellow"></i> Oops! Page not found.</h3>
27
28          <p>
29            We could not find the page you were looking for.
30            Meanwhile, you may <a href="../../index.html">return to dashboard</a> or try using the search form.
31          </p>
32
33          <form class="search-form">
34            <div class="input-group">
35              <input type="text" name="search" class="form-control" placeholder="Search">
36
37              <div class="input-group-btn">
38                <button type="submit" name="submit" class="btn btn-warning btn-flat"><i class="fa fa-search"></i>
39                </button>
40              </div>
41            </div>
42            <!-- /.input-group -->
43          </form>
44        </div>
45        <!-- /.error-content -->
46      </div>
47      <!-- /.error-page -->
48    </section>
49    <!-- /.content -->
50    {% endblock content_main %}
51  </div>
52  <!-- /.content-wrapper -->
53  {% endblock content %}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.