78 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <title>Unauthorized</title>
 | 
						|
    <style>
 | 
						|
      * {
 | 
						|
        margin: 0;
 | 
						|
        padding: 0;
 | 
						|
        box-sizing: border-box;
 | 
						|
      }
 | 
						|
      
 | 
						|
      body {
 | 
						|
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
 | 
						|
        min-height: 100vh;
 | 
						|
        display: flex;
 | 
						|
        align-items: center;
 | 
						|
        justify-content: center;
 | 
						|
      }
 | 
						|
      
 | 
						|
      .login-container {
 | 
						|
        background: white;
 | 
						|
        padding: 3rem;
 | 
						|
        border-radius: 16px;
 | 
						|
        max-width: 400px;
 | 
						|
        width: 90%;
 | 
						|
        display: flex;
 | 
						|
        justify-content: center;
 | 
						|
      }
 | 
						|
      
 | 
						|
      .login-button {
 | 
						|
        background: #4c4c4c;
 | 
						|
        color: white;
 | 
						|
        border: none;
 | 
						|
        padding: 16px 32px;
 | 
						|
        border-radius: 12px;
 | 
						|
        font-size: 16px;
 | 
						|
        font-weight: 600;
 | 
						|
        cursor: pointer;
 | 
						|
        transition: all 0.3s ease;
 | 
						|
        display: inline-flex;
 | 
						|
        align-items: center;
 | 
						|
        gap: 12px;
 | 
						|
        text-decoration: none;
 | 
						|
        min-width: 200px;
 | 
						|
        justify-content: center;
 | 
						|
      }
 | 
						|
      
 | 
						|
      .login-button:hover {
 | 
						|
        transform: translateY(-2px);
 | 
						|
      }
 | 
						|
      
 | 
						|
      .login-button:active {
 | 
						|
        transform: translateY(0);
 | 
						|
      }
 | 
						|
      
 | 
						|
      .lock-icon {
 | 
						|
        width: 20px;
 | 
						|
        height: 20px;
 | 
						|
        fill: currentColor;
 | 
						|
      }
 | 
						|
      
 | 
						|
      h1 {
 | 
						|
        color: #333;
 | 
						|
        margin-bottom: 2rem;
 | 
						|
        font-weight: 300;
 | 
						|
        font-size: 2rem;
 | 
						|
      }
 | 
						|
    </style>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div class="login-container">
 | 
						|
      <h1>Unauthorized</h1>
 | 
						|
    </div>
 | 
						|
  </body>
 | 
						|
</html>
 |