Patrick BRUGIERE 1 year ago
commit 6fadab3869

@ -95,7 +95,7 @@ h6 span{
position: relative; position: relative;
width: 440px; width: 440px;
max-width: 100%; max-width: 100%;
height: 400px; height: 500px;
-webkit-transform-style: preserve-3d; -webkit-transform-style: preserve-3d;
transform-style: preserve-3d; transform-style: preserve-3d;
perspective: 800px; perspective: 800px;

@ -41,18 +41,34 @@
<div class="center-wrap"> <div class="center-wrap">
<div class="section text-center"> <div class="section text-center">
<h4 class="mb-4 pb-3">Sign Up</h4> <h4 class="mb-4 pb-3">Sign Up</h4>
<div class="form-group">
<input type="text" name="logname" class="form-style" placeholder="Your Full Name" id="logname" autocomplete="off"> <div class="form-group mt-2">
<input type="text" name="logsurname" class="form-style" placeholder="Surname" id="logsurname" autocomplete="off">
<i class="input-icon uil uil-user"></i> <i class="input-icon uil uil-user"></i>
</div> </div>
<div class="form-group mt-2" >
<input type="text" name="logname" class="form-style" placeholder="Name" id="logname" autocomplete="off">
<i class="input-icon uil uil-user"></i>
</div>
<div class="form-group mt-2"> <div class="form-group mt-2">
<input type="email" name="logemail" class="form-style" placeholder="Your Email" id="logemail" autocomplete="off"> <input type="text" name="lognickname" class="form-style" placeholder="Nickname" id="lognickname" autocomplete="off">
<i class="input-icon uil uil-user"></i>
</div>
<div class="form-group mt-2">
<input type="email" name="logmail" class="form-style" placeholder="Your Email" id="logmail" autocomplete="off">
<i class="input-icon uil uil-at"></i> <i class="input-icon uil uil-at"></i>
</div> </div>
<div class="form-group mt-2"> <div class="form-group mt-2">
<input type="password" name="logpass" class="form-style" placeholder="Your Password" id="logpass" autocomplete="off"> <input type="password" name="logpasswd" class="form-style" placeholder="Your Password" id="logpasswd" autocomplete="off">
<i class="input-icon uil uil-lock-alt"></i> <i class="input-icon uil uil-lock-alt"></i>
</div> </div>
<a href="#" class="btn mt-4">submit</a> <a href="#" class="btn mt-4">submit</a>
</div> </div>
</div> </div>

@ -4,11 +4,12 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Users</title> <title>Users</title>
</head> </head>
<body> <body>
<section> <section>
<table> <table>
<tr> <tr>
<td>Id</td>
<td>Nickname</td> <td>Nickname</td>
<td>Name</td> <td>Name</td>
<td>Surname</td> <td>Surname</td>
@ -20,13 +21,14 @@
{% if users is defined %} {% if users is defined %}
{% for row in users %} {% for row in users %}
<tr> <tr>
<td>{{row.id}}</td>
<td>{{row.nickname}}</td> <td>{{row.nickname}}</td>
<td>{{row.name}}</td> <td>{{row.name}}</td>
<td>{{row.surname}}</td> <td>{{row.surname}}</td>
<td>{{row.email}}</td> <td>{{row.email}}</td>
<td>{{row.group}}</td> <td>{{row.group}}</td>
<td>{{row.role}}</td> <td>{{row.roles|join(', ')}}</td>
<td>{{row.extraTime}}</td> <td>{{row.extraTime? 'yes' : 'no' }}</td>
<td><input class="btn-black" type="button" value="Delete" /></td> <td><input class="btn-black" type="button" value="Delete" /></td>
</tr> </tr>
{% endfor %} {% endfor %}

Loading…
Cancel
Save