mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
14 lines
797 B
PHP
14 lines
797 B
PHP
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/style/master.css">
|
|
<link rel="stylesheet" href="/style/adduser.css">
|
|
</head>
|
|
<h1>Benutzer hinzufügen</h1>
|
|
<form class="adduser" action="/php/edit-user.php" method="post">
|
|
<label for="text_user">Benutzername</label><input id="text_user" type="text" name="username" placeholder="user" required>
|
|
<label for="text_passwd">Passwort</label><input id="text_passwd" type="password" name="passwd" placeholder="********" required>
|
|
<input type="text" name="function" value="new-user" hidden>
|
|
<input id="button_newuser" class="button" type="submit" name="" value="Neuer Benutzer">
|
|
</form>
|
|
|
|
<!-- TODO: ADD JQUERY CALL TO EDIT-USER.PHP WITH FEEDBACK VIA JS FUNCTION INFOPOPUP() -->
|