You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
802 B
HTML

2 years ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/global.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/home.css') }}" />
<script src="{{ url_for('static', filename='js/cables.js') }}" defer></script>
<title>New instrument</title>
</head>
<body>
<form method="POST" enctype="multipart/form-data">
<input type="text" name="name" placeholder="Name">
<textarea name="description" cols="30" rows="10" placeholder="description"></textarea>
<input type="text" name="params" placeholder="Parameters">
<input type="file" name="panel">
<input type="submit" value="Add">
</form>
</body>
</html>