-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (90 loc) · 4.32 KB
/
index.html
File metadata and controls
95 lines (90 loc) · 4.32 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
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Networx</title>
<link rel="stylesheet" href="login.css">
<script src="https://kit.fontawesome.com/acbb96d20a.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="circles"> </div>
<div class="circles2"></div>
<div class="circles3"></div>
<div class="mainform">
<div class="image">
<div class="container">
<img src="img/network.png" alt="logo" >
<p>NETWORX</p>
</div>
<div class="content">
<div class="slideshow-container">
<div class="slide fade">
<div class="text">"Empowering our college community to network, connect, and seize opportunities with NETWORX! 🚀 #UnlockYourPotential"</div>
</div>
<div class="slide fade">
<div class="text">"Building futures, one connection at a time. Join the NETWORX community and let's elevate each other to new heights! 💼✨ #ConnectToSuccess"</div>
</div>
<div class="slide fade">
<div class="text">"Unlocking the power of Amrita's talent pool with NETWORX! Where dreams meet opportunities and aspirations take flight. 🚀 #AmritaNETWORX"</div>
</div>
<div class="slide fade">
<div class="text">"Elevating the Amrita community with NETWORX! Where connections spark careers and dreams find their path. ✨ #AmritaNETWORX"</div>
</div>
<div class="slide fade">
<div class="text">"Empowering connections with NETWORX! Where opportunities flourish and dreams soar. ✨ #NETWORX"</div>
</div>
</div>
</div>
</div>
<div class="login-form">
<div class="sign-up" id="sign-up">
<div id="sign-co">
<div class="login-button">
<p onclick="Login()">Not New?</p>
<button onclick="Login()">Login</button>
</div>
<div class="signup-title">
<h1>Welcome to Networx</h1>
<p>Register Now!</p>
</div>
<form action= "home.html">
<label for="new-username">UserName:</label>
<input type="text" id="new-username" placeholder="@saketh_Vishnu" required title="Please enter a username">
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Psakethvishnu@gmail.com" required>
<label for="Password">Password:</label>
<input type="password" id="new-Password" placeholder="Password" required>
<button onclick="next()">Sign in</button>
</form>
</div>
</div>
<div class="sign-up-button">
<p onclick="signin()">New User?</p>
<button onclick="signin()">Sign up</button>
</div>
<h1>Welcome Back!!</h1>
<form action= "home.html">
<label for="username">UserName:</label>
<input type="text" id="username" placeholder="@saketh_Vishnu" required>
<label for="Password">Password:</label>
<input type="password" id="Password" placeholder="Password" required>
<div class="forget"><a>forgot password?</a></div>
<button onclick="nxt()">Login</button>
<div class="line">
<div class="or">OR</div>
</div>
<div class="t-p">
<i class="fa-brands fa-google"></i>
<i class="fa-brands fa-apple"></i>
<i class="fa-brands fa-meta"></i>
<i class="fa-brands fa-windows"></i>
<i class="fa-brands fa-twitter"></i>
</div>
</form>
</div>
</div>
</body>
<script src="login.js">
</script>
</html>