|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 5 | + <style> |
| 6 | + html, |
| 7 | + body { |
| 8 | + height: 85%; |
| 9 | + width: 100%; |
| 10 | + margin: 0px; |
| 11 | + background-color: #2c2f33; |
| 12 | + background-image: url('/img/discord.png'); |
| 13 | + } |
| 14 | +
|
| 15 | + .background { |
| 16 | + background-image:url("/img/landing.png"); |
| 17 | + background-position: center; |
| 18 | + background-repeat: no-repeat; |
| 19 | + background-size: cover; |
| 20 | + height: 95%; |
| 21 | + border: 2px solid #7289da; |
| 22 | + display: block; |
| 23 | + margin-left: auto; |
| 24 | + margin-right: auto; |
| 25 | + } |
| 26 | +
|
| 27 | + #transbox { |
| 28 | + background-color:rgba(255,255,255,0.8); |
| 29 | + padding:20px; |
| 30 | + border-radius: 20px; |
| 31 | + } |
| 32 | +
|
| 33 | + .title { |
| 34 | + text-align:center; |
| 35 | + font-size: 2em; |
| 36 | + color: #3C5FA3; |
| 37 | + font-weight: bold; |
| 38 | + font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 39 | + } |
| 40 | +
|
| 41 | + .container { |
| 42 | + width: 90%; |
| 43 | + margin: 0 auto; |
| 44 | + padding: 30px; |
| 45 | + border-radius: 10px; |
| 46 | + } |
| 47 | +
|
| 48 | + .clearfix:after { |
| 49 | + visibility:hidden; |
| 50 | + display:block; |
| 51 | + content:""; |
| 52 | + clear:both; |
| 53 | + height:0; |
| 54 | + } |
| 55 | +
|
| 56 | + .description { |
| 57 | + text-align:center; |
| 58 | + opacity: 0.5; |
| 59 | + color: #000000; |
| 60 | + margin-left: 10px; |
| 61 | + margin-bottom: 10px; |
| 62 | + white-space: pre-wrap; |
| 63 | + font-weight: bold; |
| 64 | + font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 65 | + } |
| 66 | +
|
| 67 | + .make-center { |
| 68 | + text-align: center; |
| 69 | + padding: 20px 0; |
| 70 | + } |
| 71 | +
|
| 72 | + .square_btn{ |
| 73 | + display: inline-block; |
| 74 | + padding: 7px 20px; |
| 75 | + border: solid 3px black; |
| 76 | + border-radius: 25px; |
| 77 | + text-decoration: none; |
| 78 | + color: #FFF; |
| 79 | + background-image: -webkit-linear-gradient(45deg, #7289da 0%, #4d6cdb 100%); |
| 80 | + background-image: linear-gradient(45deg, #7289da 0%, #4d6cdb 100%); |
| 81 | + transition: .4s; |
| 82 | + } |
| 83 | +
|
| 84 | + .square_btn:hover { |
| 85 | + background-image: -webkit-linear-gradient(45deg, #7289da 0%, #3659d8 100%); |
| 86 | + background-image: linear-gradient(45deg, #7289da 0%, #3659d8 100%); |
| 87 | + } |
| 88 | +
|
| 89 | + a { |
| 90 | + font-weight: bold; |
| 91 | + font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 92 | + } |
| 93 | + </style> |
| 94 | + </head> |
| 95 | + <body> |
| 96 | + <div class="container clearfix background"> |
| 97 | + <div id="transbox"> |
| 98 | + <title>Access denied</title> |
| 99 | + <div class="title">Access denied!</div><br> |
| 100 | + <div class="description">{{username}} has been blocked for being a member of {{guild_name}}. |
| 101 | +Please join our discord for more info.</div> |
| 102 | + <div class="make-center"> |
| 103 | + <a href="/login" class="square_btn">Login</a> <a href="{{discord_invite}}" class="square_btn">Join Our Discord</a> |
| 104 | + </div> |
| 105 | + </div> |
| 106 | + </div> |
| 107 | + </body> |
| 108 | + </body> |
| 109 | +</html> |
| 110 | + |
| 111 | +<!--created by anonymous All images are copyright and belong to their respective owners, |
| 112 | +this document is for educational purpose--> |
0 commit comments