Advertisement
Guest User

Register LeetCMS

a guest
Jun 25th, 2016
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.33 KB | None | 0 0
  1. <?php
  2. #|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|
  3. #| #|
  4. #| Développement de RetroPHP par Tyler #|
  5. #| #|
  6. #|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|
  7.  
  8. $pageid = "index";
  9. require_once './init.php';
  10.  
  11. require_once './includes/files/register.php';
  12.  
  13. $Auth::Session_Connected($_SESSION);
  14.  
  15. $pagename = "Inscription";
  16. ?>
  17. <html lang="fr">
  18. <head>
  19. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  20. <title><?php echo Settings('Name'); ?>: <?php echo $pagename; ?> </title>
  21.  
  22. <link href="<?php echo URL; ?>/web/styles/style.css?1337" rel="stylesheet" type="text/css">
  23. <link href="https://bootswatch.com/lumen/bootstrap.css" rel="stylesheet" type="text/css">
  24. <link href="<?php echo URL; ?>/web/styles/bootstrap-social.css" rel="stylesheet" type="text/css">
  25. <link href="<?php echo URL; ?>/web/styles/font-awesome.css" rel="stylesheet">
  26. <script type="text/javascript" src="//code.jquery.com/jquery-2.0.2.js"></script>
  27. <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js"></script>
  28. <link href="https://fonts.googleapis.com/css?family=Open+Sans:300normal,300italic,400normal,400italic,600normal,600italic,700normal,700italic,800normal,800italic&amp;subset=all" rel="stylesheet" type="text/css">
  29. <link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet" type="text/css">
  30.  
  31. </head>
  32. <body style="background-color: rgba(232, 232, 232, 0.57);">
  33. <div id="overlay"></div>
  34. <div class="header" style="height: 56px;">
  35. <div class="container" style="width: 950px;">
  36. <a href="<?php echo URL; ?>"><div class="logotipo" style="width: 82px; float: left; height: 34px; font-size: 37px; font-family: 'Pacifico', cursive; top: 0px; position: absolute;"><?php echo Settings('Name'); ?></div></a>
  37.  
  38. <div class="users-online" id="users-online"><span id="usersOnline"><?php echo $online; ?></span> <?php echo Settings('Nickname'); ?> connectés&nbsp;&nbsp;&nbsp;</div>
  39. <div class="clear"></div>
  40. </div>
  41. </div> <div style="clear:both;"></div>
  42. <div class="container" style="width: 950px;">
  43.  
  44. <?php if(isset($erreurmess)) { ?>
  45. <div class="alert alert-dismissible alert-warning" style="display:block;"><a href="<?php echo URL; ?>/register" type="button" class="close" data-dismiss="alert">x</a><strong>Oops!</strong> <?php echo $erreurmess; ?></div>
  46. <?php } ?>
  47. <div class="panel panel-default" style="padding: 8px;">
  48. <form class="form-horizontal" method="POST">
  49. <fieldset>
  50. <legend>S’inscrire "Ce n'est pas long" </legend>
  51.  
  52. <div class="form-group">
  53. <label for="inputUsername" class="col-lg-4 control-label">Pseudonyme</label>
  54.  
  55. <div class="col-lg-8">
  56. <input type="text" class="form-control" name="bean_name" id="inputUsername" placeholder="Pseudonyme...">
  57. <i class="glyphicon glyphicon-user form-control-feedback" style="right: 10px;"></i>
  58. </div>
  59. </div>
  60.  
  61. <div class="form-group">
  62. <label for="inputPassword" class="col-lg-4 control-label">Mot de passe</label>
  63.  
  64. <div class="col-lg-8">
  65. <input type="password" class="form-control" name="bean_password" id="inputPassword" placeholder="Mot de passe...">
  66. <i class="glyphicon glyphicon-lock form-control-feedback" style="right: 10px;"></i>
  67. </div>
  68. </div>
  69.  
  70. <div class="form-group">
  71. <label for="inputPassword2" class="col-lg-4 control-label">Confirme ton mot de passe</label>
  72. <div class="col-lg-8">
  73. <input type="password" class="form-control" name="bean_repassword" id="inputPassword2" placeholder="Confirme ton mot de passe...">
  74. <i class="glyphicon glyphicon-lock form-control-feedback" style="right: 10px;"></i>
  75. </div>
  76. </div>
  77.  
  78.  
  79. <div class="form-group">
  80. <label for="inputEmail" class="col-lg-4 control-label">Adresse email</label>
  81. <div class="col-lg-8">
  82. <input type="text" class="form-control" name="bean_email" id="inputEmail" placeholder="Adresse email...">
  83. <i class="glyphicon glyphicon-envelope form-control-feedback" style="right: 10px;"></i>
  84. </div>
  85. </div>
  86.  
  87. <div class="col-lg-8 col-lg-offset-4">
  88. <a href="<?php echo URL; ?>" class="btn btn-default">Retour</a>
  89. <button type="submit" class="btn btn-success">Valider</button>
  90. </div>
  91. </fieldset></form></div>
  92.  
  93. <div style="clear:both;"></div>
  94. 
  95. <?php include_once './templates/footer.php'; ?>
  96.  
  97. </div>
  98. </body>
  99. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement