shopping-list/install/adduser.php

15 lines
797 B
PHP
Raw Normal View History

2018-10-24 15:00:27 +02:00
<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>
2018-11-09 15:58:00 +01:00
<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>
2018-10-24 15:00:27 +02:00
<input id="button_newuser" class="button" type="submit" name="" value="Neuer Benutzer">
</form>
2018-11-09 15:58:00 +01:00
<!-- TODO: ADD JQUERY CALL TO EDIT-USER.PHP WITH FEEDBACK VIA JS FUNCTION INFOPOPUP() -->