-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathintro.htm
More file actions
38 lines (34 loc) · 992 Bytes
/
intro.htm
File metadata and controls
38 lines (34 loc) · 992 Bytes
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
<!-- Intro -->
<!DOCTYPE html>
<html>
<head>
<title>Application Form</title>
</head>
<style>
.log{
cursor: pointer;
}
</style>
<body>
<div class="wrapper fadeInDown">
<div id="formContent">
<!-- Tabs Titles -->
<h2 class="active"> Sign In </h2>
<h2 class="inactive underlineHover">Sign Up </h2>
<!-- Icon -->
<div class="fadeIn first">
<img src="http://danielzawadzki.com/codepen/01/icon.svg" id="icon" alt="User Icon" />
</div>
<!-- Login Form -->
<form>
<input type="text" id="login" class="fadeIn second" name="login" placeholder="login"><br><br>
<input type="text" id="password" class="fadeIn third" name="login" placeholder="password">
<input type="submit" class="log fadeIn fourth" value="Log In">
</form>
<!-- Remind Passowrd -->
<div id="formFooter">
<a class="underlineHover" href="#">Forgot Password?</a>
</div>
</div>
</div>
</body>