2017-06-08 19:46:36 +02:00
|
|
|
<form class="form-signin" (ngSubmit)="login(userName.value, password.value, secret.value)">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<h2 style="text-align: center;" class="form-signin-heading">Registrieren</h2>
|
|
|
|
|
2017-06-11 13:18:03 +02:00
|
|
|
<p>Dieses Formular nur ausfüllen wenn du einer <b>HL</b> angehörst oder <b>SQL</b> bist. Dabei den Nutzernamen aus
|
|
|
|
dem OPT Forum verwenden!
|
2018-04-29 09:53:51 +02:00
|
|
|
Im Forum eine Nachricht an <a href="https://operation-pandora.com/dashboard/index.php?conversation-add/&userID=9"
|
2017-06-11 13:18:03 +02:00
|
|
|
target="_blank">HardiReady</a>
|
|
|
|
senden, in welcher der 'geheime Text' steht, den du bei der Registrierung nutzt.<br>
|
2017-06-08 19:46:36 +02:00
|
|
|
Dabei kann es sich um irgend eine willkürliche Zeichenfolge oder einen Satz handeln - dient nur dem Abgleich.
|
|
|
|
Anschließend wird dein Account aktiviert und du wirst darüber per PN informiert.</p>
|
|
|
|
|
|
|
|
<label for="inputEmail" class="sr-only">Benutzername</label>
|
|
|
|
<input #userName id="inputEmail" class="form-control" placeholder="Benutzername" required="" autofocus="">
|
|
|
|
|
|
|
|
<label for="inputPassword" class="sr-only">Passwort</label>
|
|
|
|
<input #password type="password" id="inputPassword" class="form-control" placeholder="Passwort" required="">
|
|
|
|
|
|
|
|
<label for="inputSecret" class="sr-only">Secret</label>
|
|
|
|
<input #secret type="text" id="inputSecret" class="form-control" placeholder="Geheimer Text für PN Abgleich"
|
|
|
|
required="">
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<button type="submit" class="btn btn-lg btn-block btn-primary">
|
|
|
|
<span *ngIf="!loading">Registrieren</span>
|
|
|
|
<span *ngIf="loading" class="glyphicon glyphicon-refresh glyphicon-refresh-animate"></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|