Commit 1931ff7c authored by Wolfgang Knopki's avatar Wolfgang Knopki
Browse files

hack to get admin recognized again

parent e0b58d23
This commit is part of merge request !11. Comments created here will be created in the context of that merge request.
Showing with 5 additions and 11 deletions
+5 -11
...@@ -53,17 +53,11 @@ if ($this->data['errorcode'] !== null) { ...@@ -53,17 +53,11 @@ if ($this->data['errorcode'] !== null) {
<form method="post"> <form method="post">
<h2 class="sr-only">Login Form</h2> <h2 class="sr-only">Login Form</h2>
<div class="illustration"><img src="/img/M4_LAB_LOGO.png" width="130"></div> <div class="illustration"><img src="/img/M4_LAB_LOGO.png" width="130"></div>
<?php <?php if (strpos($_GET['AuthState'], 'admin') !== false) : ?>
if (strpos($_GET['AuthState'], 'admin') !== false){ <div class="form-group"><input id="username" class="form-control" type="text" name="username" placeholder="Administrator"></div>
?> <?php else : ?>
<div class="form-group"><input id="username" class="form-control" type="text" name="username" placeho$ <div class="form-group"><input id="username" class="form-control" type="email" name="username" placeholder="E-Mail-Adresse"></div>
<?php <?php endif; ?>
}else{
?>
<div class="form-group"><input id="username" class="form-control" type="email" name="username" placeh$
<?php
}
?>
<div class="form-group"><input id="password" class="form-control" type="password" name="password" placeholder="Passwort"></div><a class="text-right forgot" href="/account/forgotPwd">Passwort vergessen?</a> <div class="form-group"><input id="password" class="form-control" type="password" name="password" placeholder="Passwort"></div><a class="text-right forgot" href="/account/forgotPwd">Passwort vergessen?</a>
<div class="form-group"><button class="btn btn-primary btn-block" type="submit" style="background-color: #8a348b;"><strong>Anmelden</strong></button><a class="btn btn-primary btn-block" type="" style="background-color: rgb(234,234,234);color: rgb(0,0,0);" href="/account/registration"><strong>Neues Benutzerkonto anlegen</strong></a></div> <div class="form-group"><button class="btn btn-primary btn-block" type="submit" style="background-color: #8a348b;"><strong>Anmelden</strong></button><a class="btn btn-primary btn-block" type="" style="background-color: rgb(234,234,234);color: rgb(0,0,0);" href="/account/registration"><strong>Neues Benutzerkonto anlegen</strong></a></div>
<input type="hidden" id="processing_trans" value="<?php echo $this->t('{login:processing}'); ?>" /> <input type="hidden" id="processing_trans" value="<?php echo $this->t('{login:processing}'); ?>" />
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment