Html程序  |  28行  |  588 B

<!DOCTYPE html>
<html>
<head>
<title>Test Result Server</title>
<table class=login>
    <tr>
        <td>
            {% if user_email %}
            <span>{{ user_email }}</span>
            {% endif %}
            <span><a href="{{ login_url }}">{{ login_text }}</a></span>
        </td>
    </tr>
</table>
<link type="text/css" rel="stylesheet" href="/stylesheets/menu.css" />
</head>
<body>
<h1>Test Result Server</h1>
<div>
    <ul>{% for title,link in menu %}
        <li>
            <a href="{{ link }}" >{{ title }}</a>
        </li>{% endfor %}
    </ul>
</div>
</body>
</html>