-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinteract.html
More file actions
83 lines (68 loc) · 2.2 KB
/
interact.html
File metadata and controls
83 lines (68 loc) · 2.2 KB
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
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Tech Interacto</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/interact-style.css">
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700,800&display=swap" rel="stylesheet">
</head>
<body>
<form action="signin.php" method="POST">
<div class="cont">
<div class="form sign-in">
<h2>Sign In</h2>
<label>
<span>Univ. Roll No.</span>
<input type="id" name="userid" required>
</label>
<label>
<span>Password</span>
<input type="password" name="userpass" required>
</label>
<button class="submit" type="submit"> Sign In </button>
<p class="forgot-pass">Forgot Password ?</p>
</div>
</form>
<div class="sub-cont">
<div class="img">
<div class="img-text m-up">
<h2>New here?</h2>
<p>Sign up and discover great amount of new opportunities!</p>
</div>
<div class="img-text m-in">
<h2>One of us?</h2>
<p>If you already has an account, just sign in. We've missed you!</p>
</div>
<div class="img-btn">
<span class="m-up">Sign Up</span>
<span class="m-in">Sign In</span>
</div>
</div>
<form action="signup.php" method="POST">
<div class="form sign-up">
<h2>Sign Up</h2>
<label>
<span>Univ. Roll No. </span>
<input type="id" name="userid" required>
</label>
<label>
<span>Email</span>
<input type="email" name="useremail" required>
</label>
<label>
<span>Password</span>
<input type="password" name="userpass" required>
</label>
<label>
<span>Confirm Password</span>
<input type="password" name="usercnfpass" required>
</label>
<button type="submit" class="submit" name="submitted">Sign Up Now </button>
</div>
</form>
</div>
</div>
<script type="text/javascript" src="js/interact.js"></script>
</body>
</html>