43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/adminpage.css')}}">
|
|
<title>3d Detals</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1 class="h1header"> Административная панель </h1>
|
|
</header>
|
|
<div class="container">
|
|
|
|
<div class="row ">
|
|
<form method="post" enctype=multipart/form-data>
|
|
<label class=" d-block p-2">Выберите изображение </label>
|
|
<input class=" formblock d-block p-2" type="file" name="imgfile" />
|
|
<label class=" d-block p-2">Выберите исходный file </label>
|
|
<input class=" formblock d-block p-2" type="file" name="origfile" />
|
|
<label class=" d-block p-2">Выберите stl file </label>
|
|
<input class=" formblock d-block p-2" type="file" name="stlfile" />
|
|
<label > Напечатано </label>
|
|
<input type="checkbox" class="bxigchekcbox" id="printed" name="isprinted">
|
|
<input class="btn d-block p-2" type="submit" value="Upload">
|
|
</form>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
|
|
crossorigin="anonymous"></script>
|
|
</body>
|
|
|
|
</html> |