-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.18 KB
/
index.html
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
38
39
40
41
<!DOCTYPE html>
<style>
form{
width: 100%;
margin: 0 auto;
}
input{
margin: 10px 0;
display:inline-block;
}
</style>
<html>
<head>
<title>Welcome</title>
<link rel="stylesheet" type="text/css" href="../css/studyAll.css">
</head>
<body>
<header>
<h1>Welcome!</h1>
<p> In this session you will complete three studies assessing your management style. </p>
<p>
Please click begin to begin this series of studies.
</p>
</header>
<main >
<form action="/api/login" method="post" >
<input type="email" name="email" placeholder="Email" autocomplete="off" required ></input>
<img src="./media/Spin.gif" alt="loading" style="position:relative; visibility:hidden;width:24px;height:24px; transform:translate(0px,8px);">
<p style="margin: 0px;">or</p>
<input type="text" name="mturk_id" placeholder="MTurk ID" autocomplete="off" required ></input>
<input type="submit" value="Begin" />
</form>
</main>
<footer>
</footer>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<script src="./js/loginPage.js"></script>
</body>
</html>