small changes
This commit is contained in:
parent
3f18a82171
commit
bc6079397f
3 changed files with 5 additions and 5 deletions
|
@ -31,7 +31,7 @@ background-image: url(/assets/sm_back.jpg);
|
||||||
|
|
||||||
.divtab{
|
.divtab{
|
||||||
position: relative;
|
position: relative;
|
||||||
|
margin-top: 17vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
2
index.js
2
index.js
|
@ -55,7 +55,7 @@ app.get('/assets/*', function(req, res){
|
||||||
app.post('/',function(req,res){
|
app.post('/',function(req,res){
|
||||||
if(
|
if(
|
||||||
req.body.name === 'Simon' && req.body.pass === 'password' ||
|
req.body.name === 'Simon' && req.body.pass === 'password' ||
|
||||||
req.body.name === 'Suxxi' && req.body.pass === 'GSGSpandau'
|
req.body.name === 'Alpha' && req.body.pass === 'passwordfisch'
|
||||||
){
|
){
|
||||||
req.session.name = req.body.name
|
req.session.name = req.body.name
|
||||||
req.session.pass = req.body.pass
|
req.session.pass = req.body.pass
|
||||||
|
|
|
@ -6,9 +6,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="window" align="center">
|
<div class="window" align="center">
|
||||||
<img src="/assets/window.png" align="center" class="backframe">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="divtab">
|
<div class="divtab">
|
||||||
|
|
||||||
|
@ -19,6 +17,7 @@
|
||||||
<th>Gold</th>
|
<th>Gold</th>
|
||||||
<th>Class</th>
|
<th>Class</th>
|
||||||
<th>Aktion</th>
|
<th>Aktion</th>
|
||||||
|
<th>Album</th>
|
||||||
<th>Exp</th>
|
<th>Exp</th>
|
||||||
</tr>
|
</tr>
|
||||||
{{#instances}}
|
{{#instances}}
|
||||||
|
@ -28,6 +27,7 @@
|
||||||
<td>{{gold}}<img src="/assets/Gold.png" align="right"></td>
|
<td>{{gold}}<img src="/assets/Gold.png" align="right"></td>
|
||||||
<td>{{class}}</td>
|
<td>{{class}}</td>
|
||||||
<td>{{currentAction}}</td>
|
<td>{{currentAction}}</td>
|
||||||
|
<td><progress value={{albumProgress}} max="100"></progress></td>
|
||||||
<td><progress value={{exp_percentage}} max="1"></progress></td>
|
<td><progress value={{exp_percentage}} max="1"></progress></td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/instances}}
|
{{/instances}}
|
||||||
|
|
Reference in a new issue