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
29
30
31
32
33
34
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/">
<head>
<title>Log in</title>
</head>
<body>
<div id="ivle_padding">
<p>
Welcome to the Informatics Virtual Learning Environment.
Please log in to access your files and assessment.
</p>
<form class="verticalform thin" action="${path}" method="post">
<div>
<label for="field_username">Username:</label>
<input id="field_username" name="user" type="text" />
</div>
<div>
<label for="field_password">Password:</label>
<input id="field_password" name="pass" type="password" />
</div>
<div class="submit form_error" py:if="defined('error')"
py:content="error"></div>
<div class="submit"><input type="submit" value="Log in" /></div>
</form>
<p py:if="msie" class="erroraction"><strong>Warning:</strong> You appear
to be using Microsoft Internet Explorer. Internet Explorer is not a
supported web browser for use in IVLE at this time. Please use another
browser. We recommend <a href="http://getfirefox.com">Mozilla
Firefox</a> or <a href="http://www.google.com/chrome/">Google
Chrome</a>. If you continue, some functionality may not work.</p>
</div>
</body>
</html>
|