Initial commit
This commit is contained in:
32
master/templates/invalidMime.html
Normal file
32
master/templates/invalidMime.html
Normal file
@ -0,0 +1,32 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>CYCLESCALER | Invalid MIME Type</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<link rel="stylesheet" href="/public/css/semantic.min.css">
|
||||
<style>body{border-top: 30px solid rgb(0, 181, 173);}</style>
|
||||
<noscript>
|
||||
<style>
|
||||
.dropdown:hover > .menu { display: block; }
|
||||
.ui.secondary.menu .dropdown.item > .menu { margin-top: 0; }
|
||||
</style>
|
||||
</noscript>
|
||||
<script src="/public/js/jquery-3.4.1.min.js"></script>
|
||||
<script src="/public/js/semantic.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="ui container">
|
||||
<br />
|
||||
<div class="ui negative message">
|
||||
<div class="header">
|
||||
Wrong file type
|
||||
</div>
|
||||
<p>We expected 'application/x-blender' but received a file with MIME type '{{.UploadedFileMime}}'. Usually this means that the uploaded file is not a valid .blend file. Please try opening the file on your computer to confirm.</p>
|
||||
</div>
|
||||
<a href="/">
|
||||
<div class="ui fluid button">
|
||||
Return to Home
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user