blob: 3e32eee3515f70a45655b150aa4665b67ed89143 (
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
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Welcome to Rhizi</title>
<link href="/static/css/style.css" rel="stylesheet" type="text/css">
<script src="/static/lib/jquery.js" type="text/javascript"></script>
</head>
<body class="login-background">
<div class="welcome-box">
<img src="/static/img/logo-red.png" class="login-rhizi-logo">
<div class="login-text">
<h1 class="login-header"> Welcome to Rhizi!</h1>
<p><b>Rhizi is a collaborative knowledge editor.</b></p>
<p>Upload your internship proposals for review.</p>
<p>Share the skills, interests and project you participate in.</p>
<br>
<p>The resulting interactome allows the entire CRI to better collaborate with AIV students</p>
</div>
<div id="login_form_panel" class="login-form">
<fieldset>
<form action="/login" method="POST" id="login_form">
<input class="login-input" type="email" name="username" id="login-username" placeholder="Email">
<input class="login-input" type="password" name="password" id="login-password" placeholder="Password" required value="Password">
<input class="login-input" type="submit" value="Sign in">
<a class="forgot-password"> forgot password? </a>
</form>
</fieldset>
<div id="failed-login">
{% if login_failed %}<b>Login Failed</b>{% endif %}
</div>
</div>
<div class="contact-us-div"><span class="contact-us-icon"></span></div>
<p class="login-text contact-us-text"><a class="contact-us-link" href="mailto:dor.garbash@gmail.com">Send us an Email</a> about your experience, especially if you encountered any problem!</p>
</div>
</body>
</html>
|