diff options
-rw-r--r-- | root/index.tt | 55 |
1 files changed, 29 insertions, 26 deletions
diff --git a/root/index.tt b/root/index.tt index e543f51..5e2a646 100644 --- a/root/index.tt +++ b/root/index.tt @@ -1,29 +1,32 @@ -<div id="login_form"> - <h2 style="text-align: left;">[% l('Login') %]</h2> - <form method="post" action="/user"> - <div id="login_form_inputs"> - <p><label for="username_">[% l('Username : ') %]</label> - <input id="username_" type="text" name="username" value="[% c.user.username %]" /> - </p> - <p><label for="password_">[% l('Password : ') %]</label> - <input id="password_" type="password" name="password" /><br> - <a href="/forgot_password" style="font-size: smaller;">[% l('Forgotten password?') %]</a> - </p> - <p><input type="submit" value="[% l('Login') %]"/></p> - </div> - </form> -</div> -<div id="info"> - <h2 style="text-align: left;">[% l('Register an account') %]</h2> +<div style="text-align: left; vertical-align: top;"> + <div id="login_form"> + <h2 style="text-align: left;">[% l('Login') %]</h2> + <form method="post" action="/user"> + <div id="login_form_inputs"> + <p><label for="username_">[% l('Username : ') %]</label> + <input id="username_" type="text" name="username" value="[% c.user.username %]" /> + </p> + <p><label for="password_">[% l('Password : ') %]</label> + <input id="password_" type="password" name="password" /><br> + <a href="/forgot_password" style="font-size: smaller;">[% l('Forgotten password?') %]</a> + </p> + <p><input type="submit" value="[% l('Login') %]"/></p> + </div> + </form> + </div> + <div id="info" style="margin-left: 2em; padding-left: 2em; border-left: 1px solid #ddd;"> + <h2 style="text-align: left;">[% l('Register an account') %]</h2> - <p>You will need an account when you want to participate in Mageia, - through various channels: <a href="http://forums.mageia.org/">forums</a>, - <a href="http://wiki.mageia.org/">wiki</a>, - <a href="http://bugs.mageia.org/">bugzilla</a>, - <a href="http://ml.mageia.org/">mailing-lists</a>.</p> - <p>It's easy! Join us!</p> + <p>You will need an account when you want to participate in Mageia, + through <a href="http://ml.mageia.org/">mailing-lists</a>, + <a href="http://wiki.mageia.org/">wiki</a>, + <a href="http://bugs.mageia.org/">bugzilla</a>, + our <a href="http://svn.mageia.org/">code</a> + <a href="http://git.mageia.org/">repositories</a>, + <a href="http://forums.mageia.org/">forums</a>, etc.</p> - <form method="get" action="/register"> - <p><input type="submit" value="[% l('Register') %]"></p> - </form> + <form method="get" action="/register"> + <p><input type="submit" value="[% l('Register') %]"></p> + </form> + </div> </div>
\ No newline at end of file |