aboutsummaryrefslogtreecommitdiff
path: root/mod/oauth_api/vendors/oauth/example/server/core/templates/logon.tpl
blob: 5ccd432b56f56f3e67a0c3418ab5b3a65a267bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{include file='inc/header.tpl'}

<h1>Login</h1>

<form method="post">
    <input type="hidden" name="goto" value="{$smarty.request.goto}" />

    <label for="username">User name</label><br />
    <input type="text" name="username" id="username" />
    
    <br /><br />

    <label for="password">Password</label><br />
    <input type="text" name="password" id="password" />

    <br /><br />
    
    <input type="submit" value="Login" />
</form>

{include file='inc/footer.tpl'}