-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
129 lines (100 loc) · 5.07 KB
/
welcome.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TeamUP</title>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@500&family=Roboto:wght@300&family=Source+Sans+Pro:wght@700&family=Varela+Round&display=swap" rel="stylesheet">
<!-- css bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous"/>
<link rel="stylesheet" href="welcome.css"/>
<link rel="icon" href="resources/TeamUP.ico"> <!-- favicon -->
<!-- javascript bootstrap-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>
<!--fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
</head>
<body>
<div class="loader_bg">
<div class="loader"></div>
</div>
<section id="title">
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#">
<img src="resources/temupLogo.png" width="34" height="34" class="d-inline-block align-top log" alt=""/></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#footer">Contacts</a>
</li>
<li class="nav-item active">
<button onclick="logout()" class="btn btn-danger">Logout</button>
</li>
</ul>
</div>
</nav>
<!-- Title -->
<div class="row container-fluid title-box">
<div class="col-lg-6">
<h1 class="title-tag">Platform to connect and make a team.</h1>
<button id="MAINPAGE" type="button" class="btn btn-dark btn-lg download-button" style="margin-top: 2%;">Get Started</button>
</div>
<div class="col-lg-6 imgbox"><img class="title-image" style="width: 60%; margin-bottom: auto; margin-left: 20%;" src="resources/Titleedit.jpg">
</div>
</div>
</section>
<!-- Features -->
<section id="features">
<div class="row">
<div class="feature-box col-lg-4">
<i class="icon fas fa-user-group fa-4x"></i>
<h3>Interact</h3>
<p>information about user's scoial platform can be used to contact them.</p>
</div>
<div class="feature-box box-2 col-lg-4 ">
<i class="icon fas fa-hourglass-start fa-4x"></i>
<h3>Time saving</h3>
<p>through showacased resumes you can fastly find your desired project partner </p>
</div>
<div class="feature-box col-lg-4 ">
<i class="icon fas fa-heart fa-4x"></i>
<h3>Free Service</h3>
<p>There is no charge for the users to use this platform</p>
</div>
</div>
</section>
<!--motoline -->
<section id="mtl">
<h3 class="mtl-heading">Easily Find your Team-mate Today.</h3>
</section>
<!-- Footer -->
<footer id="footer">
<i class="social-icon fab fa-facebook-f"></i>
<i class="social-icon fab fa-twitter"></i>
<i class="social-icon fab fa-instagram"></i>
<i class="social-icon fas fa-envelope"></i>
<p>© Copyright 2022 TeamUP-by RaghvanPareek</p>
</footer>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-firestore.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="firebase.js"></script>
<script src="welcome.js"></script>
</body>
</html>