-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added team.html - Added New Invite Link - Added thanks.html - Added invite.html
- Loading branch information
1 parent
34f6016
commit b17ac95
Showing
9 changed files
with
334 additions
and
329 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>Assistant - Invite Assistant</title> | ||
<meta property="og:title" content="Assistant Discord Bot"> | ||
<meta name="twitter:title" content="Assistant Discord Bot"> | ||
<meta name="description" content="Invite Assistant"> | ||
<meta property="og:description" content="Invite Assistant"> | ||
<meta name="twitter:description" content="Invite Assistant"> | ||
|
||
<meta property="og:image" | ||
content="https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.png"> | ||
<meta name="twitter:image" | ||
content="https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.png"> | ||
|
||
|
||
<link rel="icon" type="image/x-icon" | ||
href="https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.png"> | ||
<link rel="stylesheet" href="assets/css/bulma.min.css" /> | ||
<link rel="stylesheet" href="assets/css/style.css" /> | ||
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" /> | ||
<link rel="stylesheet" href="https://unpkg.com/tippy.js@6/animations/scale.css" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" | ||
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" | ||
crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
|
||
<script src="assets/js/jquery-3.6.0.js"></script> | ||
<script> | ||
function webhook() { | ||
var request = new XMLHttpRequest(); | ||
request.open("POST", "https://discord.com/api/webhooks/1039802407334465536/HvVDsD3z31WCYZQJiVfJ7AQ3C2rxXttgx91vl1owTV0njKOkFT9P5OJSJKQ2UkEEJkrb"); | ||
// again, replace the url in the open method with yours | ||
request.setRequestHeader('Content-type', 'application/json'); | ||
|
||
var myEmbed = { | ||
author: { | ||
name: "Assistant Web", | ||
|
||
}, | ||
title: "New Visit", | ||
description: "A new Visitor just visited our website!", | ||
color: hexToDecimal("#e74d3c"), | ||
fields: [ | ||
{ | ||
name: "Page Visited", | ||
value: `Invite Page ([invite.html](${window.location.origin}/invite.html))`, | ||
inline: false | ||
} | ||
] | ||
} | ||
|
||
var params = { | ||
username: "Assistant", | ||
avatar_url: "https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.webp?size=1024", | ||
embeds: [myEmbed] | ||
} | ||
|
||
request.send(JSON.stringify(params)); | ||
|
||
// function that converts a color HEX to a valid Discord color | ||
function hexToDecimal(hex) { | ||
return parseInt(hex.replace("#", ""), 16) | ||
} | ||
} | ||
</script> | ||
<meta http-equiv="refresh" content="0; url=https://discord.com/api/oauth2/authorize?client_id=821445736322695179&permissions=8&redirect_uri=https%3A%2F%2Fassistant-8683.vercel.app%2Fthanks.html&response_type=code&scope=identify%20bot"> | ||
</head> | ||
|
||
<body onload="webhook()"> | ||
|
||
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> | ||
<script src="https://unpkg.com/@popperjs/core@2"></script> | ||
<script src="https://unpkg.com/tippy.js@6"></script> | ||
<script src="assets/js/script.js"></script> | ||
</body> | ||
|
||
</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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
b17ac95
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
assistant-web – ./
assistant-discord.vercel.app
assistant-web-git-main-sayad-uddin-tahsin.vercel.app
assistant-8683.vercel.app
assistant-web-sayad-uddin-tahsin.vercel.app