61 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="cs">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <title>💬 Chat VHSky</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <style>
 | |
|       body {
 | |
|         font-family: system-ui, sans-serif;
 | |
|         background: #f4f4f8;
 | |
|         color: #222;
 | |
|         margin: 0;
 | |
|         padding: 2rem;
 | |
|       }
 | |
|       .container {
 | |
|         max-width: 600px;
 | |
|         margin: auto;
 | |
|         background: white;
 | |
|         padding: 2rem;
 | |
|         border-radius: 12px;
 | |
|         box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
 | |
|       }
 | |
|       h1 {
 | |
|         text-align: center;
 | |
|       }
 | |
|       a.button {
 | |
|         display: block;
 | |
|         background: #2d89ef;
 | |
|         color: white;
 | |
|         text-decoration: none;
 | |
|         padding: 1rem;
 | |
|         text-align: center;
 | |
|         border-radius: 8px;
 | |
|         font-size: 1.2rem;
 | |
|         margin-top: 1rem;
 | |
|       }
 | |
|       a.button:hover {
 | |
|         background: #1b66c9;
 | |
|       }
 | |
|       footer {
 | |
|         margin-top: 3rem;
 | |
|         text-align: center;
 | |
|         font-size: 0.9rem;
 | |
|         color: #666;
 | |
|       }
 | |
|     </style>
 | |
|   </head>
 | |
|   <body>
 | |
|     <div class="container">
 | |
|       <h1>💬 Vítej v chatu VHSky</h1>
 | |
|       <p>Chatovací místnost je dostupná zde:</p>
 | |
|       <a class="button" href="chat/hlavni.html">Vstoupit do hlavní místnosti</a>
 | |
|       <footer>
 | |
|         Matrix server: <code>matrix.vhsky.cz</code><br />
 | |
|         Powered by Hydrogen & Surfer
 | |
|       </footer>
 | |
|     </div>
 | |
|   </body>
 | |
| </html>
 | |
| 
 |