Blame view

index.html 2.46 KB
3c5e66e0   Geoffrey PREUD'HOMME   Pas de PHP au fin...
1
2
3
4
5
6
7
8
9
  <!DOCTYPE html>
  <html lang="fr">
  
  <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" />
      <title>10⁵</title>
  
      <!-- CSS  -->
68c7896a   Geoffrey PREUD'HOMME   Bower !
10
11
      <link href="lib/material-icons/css/material-icons.min.css" rel="stylesheet">
      <link href="lib/Materialize/dist/css/materialize.min.css" type="text/css" rel="stylesheet" media="screen,projection" />
3c5e66e0   Geoffrey PREUD'HOMME   Pas de PHP au fin...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
      <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" />
  </head>
  
  <body>
      <!-- Réutilisable -->
      <!-- Page -->
      <nav class="red" role="navigation">
          <div class="nav-wrapper container"><a id="logo-container" href="#" class="brand-logo">10⁵</a>
              <ul class="right">
              </ul>
          </div>
      </nav>
  
      <div class="section no-pad-bot" id="main">
          <div class="container">
              <br><br><br>
              <h4>Se connecter</h4>
              <h4>Avec votre identifiant et votre mot de passe</h4>
              <div class="row">
                  <form class="col s12">
                      <div class="row">
                          <div class="input-field col s12">
                              <input type="text" id="login">
                              <label for="login">Identifiant</label>
                          </div>
                      </div>
                      <div class="row">
                          <div class="input-field col s12">
                              <input type="password" id="mdp">
                              <label for="mdp">Mot de passe</label>
                          </div>
                      </div>
                      <div class="row">
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
45
                          <a href="#!" id="connecter" class="btn-large waves-effect waves-light">Se connecter</a>
3c5e66e0   Geoffrey PREUD'HOMME   Pas de PHP au fin...
46
47
48
49
50
51
                      </div>
                  </form>
              </div>
              <h5>Avec votre carte étudiant</h5>
              <p>Passez-la simplement devant le lecteur</p>
          </div>
3ad816b7   Geoffrey PREUD'HOMME   Écran de connexion
52
      </div>
3ad816b7   Geoffrey PREUD'HOMME   Écran de connexion
53
      </div>
3c5e66e0   Geoffrey PREUD'HOMME   Pas de PHP au fin...
54
55
56
57
58
59
60
61
62
63
      <footer class="page-footer red">
          <div class="footer-copyright">
              <div class="container">
                  10p5 v0.0.0 - © Copyright 2016, <a href="http://clubinfo.plil.net">Le Club Info Polytech Lille</a>
              </div>
          </div>
      </footer>
  
  
      <!--  Scripts-->
68c7896a   Geoffrey PREUD'HOMME   Bower !
64
65
      <script src="lib/jquery/dist/jquery.min.js"></script>
      <script src="lib/Materialize/dist/js/materialize.min.js"></script>
3c5e66e0   Geoffrey PREUD'HOMME   Pas de PHP au fin...
66
67
68
69
70
      <script src="js/init.js"></script>
  
  </body>
  
  </html>