View sourcecode

The following files exists in this folder. Click to view.

add_user.php

16 lines UTF-8 Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
include("check_login.php");
?>

<h2>Skapa ny användare</h2>

<form action="save_user.php" method="post">
    Användarnamn:<br>
    <input type="text" name="username"><br><br>

    Lösenord:<br>
    <input type="password" name="password"><br><br>

    <input type="submit" value="Spara">
</form>