26 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
 | |
|     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
 | |
|     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
 | |
|     <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
 | |
|     <link rel="shortcut icon" href="/favicon.ico">
 | |
|     <title>Log in</title>
 | |
| </head>
 | |
| <body>
 | |
|     <nav class="navbar navbar-expand-sm navbar-dark bg-primary">
 | |
|         <a class="navbar-brand" href="index.html">Reimbursinator</a>
 | |
|     </nav>
 | |
|     <h1>Log in</h1>
 | |
|     <form method="POST">
 | |
|         username: <input type="text" name="username" required><br>
 | |
|         password: <input type="password" name="password" required><br>
 | |
|         <input type="submit" name="submit" value="submit">
 | |
|     </form>
 | |
|     <p id="errorReport"><p>
 | |
|     <script src="login.js"></script>
 | |
| </body>
 | |
| </html>
 | 
