summaryrefslogtreecommitdiffstats
path: root/webui_templates/login.tmpl
blob: 891dc4cafe0af6d8fa4c42f893b9faaecbd10f3a (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
#extends cobbler.webui.master

#block body
<form method="post" action="$base_url/login_submit">

#if $message
    <h1>$message</h1>
#end if

<fieldset id="cform">
    <legend>Log In</legend>

    <label for="username">Username:</label>
    <input type="text" id="username" name="username" style="width: 150px;" value="" size="16"/>

    <br/>

    <label for="password">Password:</label>
    <input type="password" id="password" name="password" style="width: 150px;" value="" size="16"/>

    <br/>

    <input type="submit" name="submit" value="Login"/>

</fieldset>
</form>
#end block body