HTML-Validator-Anpassungen
This commit is contained in:
+3
-3
@@ -28,11 +28,11 @@
|
|||||||
<h1 style="width: 50%; text-align: center">Jetzt Registrieren!</h1><br>
|
<h1 style="width: 50%; text-align: center">Jetzt Registrieren!</h1><br>
|
||||||
|
|
||||||
<p style="width: 80%;"> Email:</p>
|
<p style="width: 80%;"> Email:</p>
|
||||||
<input type="email" name="email" style="width: 80%;" placeholder="mustermann@web.de" required autofocus>
|
<input type="email" name="email" style="width: 80%;" placeholder="mustermann@web.de" required>
|
||||||
<p style="width: 80%;"> Vorname:</p>
|
<p style="width: 80%;"> Vorname:</p>
|
||||||
<input type="text" name="vorname" style="width: 80%;" placeholder="Max" required autofocus>
|
<input type="text" name="vorname" style="width: 80%;" placeholder="Max" required>
|
||||||
<p style="width: 80%;"> Nachname:</p>
|
<p style="width: 80%;"> Nachname:</p>
|
||||||
<input type="text" name="nachname" style="width: 80%;" placeholder="Mustermann" required autofocus>
|
<input type="text" name="nachname" style="width: 80%;" placeholder="Mustermann" required>
|
||||||
|
|
||||||
<p style="width: 80%;"> Passwort:</p>
|
<p style="width: 80%;"> Passwort:</p>
|
||||||
<input type="password" name="password" style="width: 80%;" placeholder="Passwort" required>
|
<input type="password" name="password" style="width: 80%;" placeholder="Passwort" required>
|
||||||
|
|||||||
+9
-9
@@ -25,29 +25,29 @@
|
|||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<div><h1>Benutzerdaten ändern</h1></div>
|
<div><h1>Benutzerdaten ändern</h1></div>
|
||||||
<div><a href="/users"><img src="../images/logo.png" width="120" height="72"></a></div>
|
<div><a href="/users"><img src="../images/logo.png" alt="" width="120" height="72"></a></div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label id="Vorname"><h2>Vorname</h2></label>
|
<label id="Vorname"><br>Vorname</br></label>
|
||||||
<input type="text" name="Vorname" required="true" placeholder="Vorname" value="<?php //DB-Daten ?>">
|
<input type="text" name="Vorname" required placeholder="Vorname" value="<?php //DB-Daten ?>">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<label id="Nachname"><h2>Nachname</h2></label>
|
<label id="Nachname"><br>Nachname</br></label>
|
||||||
<input type="text" name="Nachname" required="true" placeholder="Nachname" value="<?php //DB-Daten ?>">
|
<input type="text" name="Nachname" required placeholder="Nachname" value="<?php //DB-Daten ?>">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<label id="Email"><h2>Email-Adresse</h2></label>
|
<label id="Email"><br>Email-Adresse</br></label>
|
||||||
<input type="email" name="Email" required="true" placeholder="mustermann@web.de" value="<?php //DB-Daten ?>">
|
<input type="email" name="Email" required placeholder="mustermann@web.de" value="<?php //DB-Daten ?>">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<label id="Passwort"><h2>Passwort</h2></label>
|
<label id="Passwort"><br>Passwort</br></label>
|
||||||
<input type="password" name="Passwort" required="true" placeholder="Passwort">
|
<input type="password" name="Passwort" required placeholder="Passwort">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user