mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-10-31 14:15:50 +00:00 
			
		
		
		
	 318f00993e
			
		
	
	318f00993e
	
	
	
		
			
			* wip * feat: make forms functional * feat: finalize pages * chore: remove unused translations * feat: app context * feat: user context * feat: finalize username login * fix: use correct tab order in login form * feat: add oauth logic * chore: update readme and assets * chore: rename docs back to assets * feat: favicons * feat: custom background image config option * chore: add acknowledgements for background image * feat: sanitize redirect URL * feat: sanitize redirect URL on check * chore: fix dependabot config * refactor: bot suggestions * fix: correctly redirect to app and check for untrusted redirects * fix: run oauth auto redirect only when there is a redirect URI * refactor: change select color * fix: fix dockerfiles * fix: fix hook rendering * chore: remove translations cdn * chore: formatting * feat: validate api response against zod schema * fix: use axios error instead of generic error in login page
		
			
				
	
	
		
			19 lines
		
	
	
		
			707 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			707 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
 | |
|     <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
 | |
|     <link rel="shortcut icon" href="/favicon.ico" />
 | |
|     <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
 | |
|     <meta name="apple-mobile-web-app-title" content="Tinyauth" />
 | |
|     <link rel="manifest" href="/site.webmanifest" />
 | |
|     <title>Tinyauth</title>
 | |
|   </head>
 | |
|   <body class="dark">
 | |
|     <div id="root"></div>
 | |
|     <script type="module" src="/src/main.tsx"></script>
 | |
|   </body>
 | |
| </html>
 |