-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b03f29
commit 51b1f5c
Showing
22 changed files
with
293 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,131 +1,130 @@ | ||
<!DOCTYPE html> | ||
<!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>Delta Inductions | LOGIN REDIRECT</title> | ||
</head> | ||
|
||
<style> | ||
:root { | ||
--background: #282725; | ||
--base: #463b33; | ||
--accent1: #749f55; | ||
--accent2: #ced346; | ||
--text: #f4efe2; | ||
--pop: #ff5757; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", | ||
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", | ||
"Helvetica Neue", sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
|
||
background-color: var(--background); | ||
} | ||
|
||
* { | ||
color: var(--text); | ||
} | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
.containerz { | ||
position: relative; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100vw; | ||
min-height: 100vh; | ||
background: var(--background); | ||
} | ||
|
||
.containerz .loader { | ||
position: relative; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 300px; | ||
height: 300px; | ||
} | ||
|
||
.containerz .loader span { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
border: 2px solid #fff; | ||
pointer-events: none; | ||
animation: animateThreads 5s linear infinite; | ||
} | ||
|
||
.containerz .loader span:nth-child(1) { | ||
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; | ||
} | ||
|
||
.containerz .loader span:nth-child(2) { | ||
animation-direction: reverse; | ||
border-radius: 67% 33% 70% 30% / 75% 65% 35% 25%; | ||
} | ||
|
||
.containerz .loader span:nth-child(3) { | ||
animation-duration: 3s; | ||
border-radius: 52% 48% 70% 30% / 41% 65% 35% 59%; | ||
} | ||
|
||
@keyframes animateThreads { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
.containerz .loader h2 { | ||
color: var(--text); | ||
/* font-family: "Courier New", Courier, monospace; */ | ||
font-weight: 500; | ||
max-width: 200px; | ||
text-align: center; | ||
} | ||
</style> | ||
|
||
<body> | ||
<!-- <h1>Auth Callback</h1> --> | ||
|
||
<div class="containerz"> | ||
<div class="loader"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<h2>Redirecting back to the main site...</h2> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
<script> | ||
const urlSearchParams = new URLSearchParams(window.location.search); | ||
const params = Object.fromEntries(urlSearchParams.entries()); | ||
params.source = "dauth-login-callback"; | ||
|
||
setTimeout(() => { | ||
if (window.opener) { | ||
// send them to the opening window | ||
window.opener.postMessage(params); | ||
// close the popup | ||
window.close(); | ||
} | ||
}, 500); | ||
</script> | ||
</html> | ||
<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>Pragyan '24 | Login Redirect</title> | ||
</head> | ||
|
||
<style> | ||
:root { | ||
--background: #282725; | ||
--base: #463b33; | ||
--accent1: #749f55; | ||
--accent2: #ced346; | ||
--text: #f4efe2; | ||
--pop: #ff5757; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', | ||
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
|
||
background-color: var(--background); | ||
} | ||
|
||
* { | ||
color: var(--text); | ||
} | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
.containerz { | ||
position: relative; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100vw; | ||
min-height: 100vh; | ||
background: var(--background); | ||
} | ||
|
||
.containerz .loader { | ||
position: relative; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 300px; | ||
height: 300px; | ||
} | ||
|
||
.containerz .loader span { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
border: 2px solid #fff; | ||
pointer-events: none; | ||
animation: animateThreads 5s linear infinite; | ||
} | ||
|
||
.containerz .loader span:nth-child(1) { | ||
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; | ||
} | ||
|
||
.containerz .loader span:nth-child(2) { | ||
animation-direction: reverse; | ||
border-radius: 67% 33% 70% 30% / 75% 65% 35% 25%; | ||
} | ||
|
||
.containerz .loader span:nth-child(3) { | ||
animation-duration: 3s; | ||
border-radius: 52% 48% 70% 30% / 41% 65% 35% 59%; | ||
} | ||
|
||
@keyframes animateThreads { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
.containerz .loader h2 { | ||
color: var(--text); | ||
/* font-family: "Courier New", Courier, monospace; */ | ||
font-weight: 500; | ||
max-width: 200px; | ||
text-align: center; | ||
} | ||
</style> | ||
|
||
<body> | ||
<!-- <h1>Auth Callback</h1> --> | ||
|
||
<div class="containerz"> | ||
<div class="loader"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<h2>Redirecting back to the main site...</h2> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
<script> | ||
const urlSearchParams = new URLSearchParams(window.location.search); | ||
const params = Object.fromEntries(urlSearchParams.entries()); | ||
params.source = 'dauth-login-callback'; | ||
|
||
setTimeout(() => { | ||
if (window.opener) { | ||
// send them to the opening window | ||
window.opener.postMessage(params); | ||
// close the popup | ||
window.close(); | ||
} | ||
}, 500); | ||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"content": "Pragyan, the international techno-managerial organisation of NIT Trichy , which came into being in 2005, achieves just that by providing aplatform for a multitude of students to showcase their technicalingenuity and prowess. Pragyan has come a long way since its inception,propelling the fields of science and technology toward greater heights.", | ||
"content2": " It basks in the limelight with the London Olympics and Manchester United as one of the three organisations to have ever achieved the ISO 20121:2012 Certification for Sustainable Event Management. Pragyan also holds the coveted honour of being the only student-run organisation amongst the three. In addition, Pragyan has the ISO 9001:2015 Certification for Quality Management Systems. Moreover, it has been registered as a case study in The Case Centre, London" | ||
"content": "In the previous year, Pragyan grew from the hybrid fest of 2022 to a completely offline fest. The theme of Pragyan '23 was Cyberscape and was a surreal experience at that. The edition had many sessions with renowned speakers, scholars, and eminent personalities on our Pragyan Guest Lectures and Q&A sessions. With events, podcasts, and articles spreading awareness and information, Pragyan is sustaining its zeal. With \"Chronocle\" as its theme, the twentieth edition of Pragyan will be conducted on the NITT campus in all its grandeur. With this edition, we aim to introspect time - what has been, what is, and what will be. The past, the present, and the future is carried by each of us. Pragyan '24 will bring these three together, so that to make the best of all the parallels and celebrate technology." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.