-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from nnev/new_user
new function to add new user
- Loading branch information
Showing
4 changed files
with
169 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div class="mdl-card mdl-shadow--2dp" id="login-box"> | ||
<form method="POST"> | ||
<div class="mdl-textfield mdl-js-textfield"> | ||
<input class="mdl-textfield__input" type="text" name="username" /> | ||
<label class="mdl-textfield__label" for="username">Username</label> | ||
</div> | ||
<div class="mdl-textfield mdl-js-textfield"> | ||
<input class="mdl-textfield__input" type="password" name="password" /> | ||
<label class="mdl-textfield__label" for="password">Password</label> | ||
</div> | ||
<div class="mdl-textfield mdl-js-textfield"> | ||
<input class="mdl-textfield__input" type="password" name="confirm" /> | ||
<label class="mdl-textfield__label" for="confirm">Passwort bestätigen</label> | ||
</div> | ||
<button class="mdl-button mdl-js-button mdl-button--colored" type="submit"> | ||
Erstellen | ||
</button> | ||
</form> | ||
</div> |