forked from sunitaRav/mockups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·78 lines (65 loc) · 3.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>eHour-signIn form</title>
<!-- metatags-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" href="css/font-awesome.css">
<link href="//fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
</head>
<body>
<a id="nisum-logo"><img src="./images/logo.svg" width="300" height="100" alt="NisumTimesheet"></a>
<div class="w3ls-main">
<div class="wthree-heading">
<h1>Welcome to the Nisum Timesheet Tool</h1>
</div>
<div class="content">
<!-- <h1>Instructions</h1> -->
<p> You can now sign in with your ehour username password or using your Nisum Gmail Account by clicking the button <i class="fa fa-google-plus-square fa-2x" aria-hidden="true"></i>to get into your timesheet account.
</p>
<ul class="instructions">
<li>It is mandatory that everyone fill timesheets into this tool by end of Friday every week.</li>
<li>If you do not see your project assignment(s) / need to unlock your previous weeks to enter time, please send an email to
<a>[email protected]</a></li>
<li>If you run into problems/have suggestions/improvements about the timesheet application itself, please send your queries to<a>[email protected]</a> </li>
<br>
<br>
</ul>
</div>
<div class="wthree-container">
<div class="wthree-form">
<div class="agileits-2">
<h2>login</h2>
</div>
<form action="#" method="post">
<div class="w3-user">
<span><i class="fa fa-user-o" aria-hidden="true"></i></span>
<input type="text" name="Username" placeholder="Username" required="">
</div>
<div class="clear"></div>
<div class="w3-psw">
<span><i class="fa fa-key" aria-hidden="true"></i></span>
<input type="password" name="password" placeholder="Password" required="">
</div>
<div class="clear"></div>
<div class="w3l">
<span><a href="#">QUICK Sign In:<i class="fa fa-google-plus-square fa-2x" aria-hidden="true"></i></a></span>
</div>
<div class="clear"></div>
<div class="w3l-submit">
<input type="submit" value="login">
</div>
<div class="clear"></div>
</form>
</div>
</div>
</div>
</div>
<div class="agileits-footer">
<p>Happy Filling Timesheets Every Friday!!!.. </p>
</div>
</body>
</html>