aboutsummaryrefslogtreecommitdiffstats
path: root/login.html
blob: e07d6af990e786aec25cfa93adf0903d39541732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!--index.html-->
<!DOCTYPE html>
<html lang="en">

    <head>
        <title>SIUE Zone Container Manager - Login</title>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" href="ZoneStyle.css">
    </head>

    <body>
        <div class="loginContainer">
            <h1>Log into SIUE Zone Container Manager</h1>
            <form>
                Username: 
                <br>
                <input type="text" name="username"/>
                <br>
                Password: 
                <br>
                <input type="password" name="username"/>
                <br>
                <input type="submit" name="loginSubmitButton" value="Submit">
            </form>
        </div>
    </body>

</html>