33 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
<form class="form-signin" (ngSubmit)="login(userName.value, password.value, secret.value)">
 | 
						|
 | 
						|
  <div class="row" style="position: absolute;width: 500px;left: 40%;">
 | 
						|
    <h2 style="text-align: center;" class="form-signin-heading">Registrieren</h2>
 | 
						|
 | 
						|
    <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!
 | 
						|
      Im Forum eine Nachricht an <a href="https://www.opt4.net/dashboard/index.php?conversation-add/&userID=9"
 | 
						|
                                    target="_blank">HardiReady</a>
 | 
						|
      senden, in welcher der 'geheime Text' steht, den du bei der Registrierung nutzt.<br>
 | 
						|
      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>
 | 
						|
 |