mirror of
				https://github.com/bspeice/Melodia
				synced 2025-11-03 18:00:50 -05:00 
			
		
		
		
	Contains app-specific URL handling, and initial static resources (bootstrap, jquery 1.9, jquery-ui 1.10 included)
		
			
				
	
	
		
			21 lines
		
	
	
		
			593 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			593 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<html>
 | 
						|
    <head>
 | 
						|
        <meta charset="utf-8" />
 | 
						|
        <title>Login to Melodia</title>
 | 
						|
 | 
						|
		<link href="{{ STATIC_URL }}bootstrap.css" rel="stylesheet">
 | 
						|
    </head>
 | 
						|
	<body>
 | 
						|
	    <div class="navbar navbar-inverse navbar-fixed-top">
 | 
						|
	        <div class="navbar-inner">
 | 
						|
	            <div class="container">
 | 
						|
	                <a data-toggle="collapse" data-target=".nav-collapse" class="btn btn-navbar"></a>
 | 
						|
	            </div>
 | 
						|
	        </div>
 | 
						|
	    </div>
 | 
						|
 | 
						|
		<!-- Apparently putting javascript at the bottom makes it load faster... -->
 | 
						|
		<!-- Also, this is the login page... -->
 | 
						|
	</body>
 | 
						|
</html>
 |