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

50 lines
1.7 KiB

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Tiny Components | Field Upload</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<link href="/css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<header class="header">
<div class="bar">
<div class="bar__start">
<h1 class="m-top-4 m-bottom-4 h4">
@tiny-components/upload
</h1>
</div>
<div class="bar__main justify-end">
<a class="button button--small m-left-sm-3 m-bottom-0" href="https://git.node001.net/tiny-components/upload" rel="noopener" target="_blank">
Gitea
<svg class="m-left-3 icon fill-text" aria-hidden="true">
<use xlink:href="/symbol-defs.svg#icon-gitea"></use>
</svg>
</a>
</div>
</div>
</header>
<div class="container">
<div class="grid">
<div class="col-12">
<form class="form-html m-top-7" novalidate method="post" enctype="multipart/form-data">
<div class="field-group">
<tiny-field-upload label="Add Files" name="file" max="2" multiple></tiny-field-upload>
<field-error name="file"></field-error>
</div>
<button class="button" type="submit">
Send
</button>
</form>
</div>
</div>
</div>
<script type="text/javascript" defer src="/js/index.js"></script>
</body>
</html>