Implement JS + add URL field

This commit is contained in:
Elias Schriefer
2024-06-21 11:27:26 +02:00
parent 49f7c92178
commit ee5d9712f4
3 changed files with 130 additions and 25 deletions

View File

@@ -5,6 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DataDash Add dataset/API</title>
<link rel="stylesheet" href="add.css">
<script type="module" src="add.js"></script>
</head>
<body>
<main>
@@ -21,13 +22,13 @@
<form action="/api/add" method="post">
<span>
<label for="text">Title</label>
<input type="text" name="title" id="title">
<label for="title">Title</label>
<input type="text" name="title" id="title" minlength="1" maxlength="50" required>
</span>
<span id="author-box">
<label for="author">Author</label>
<input type="text" name="author" id="author">
<input type="text" name="author" id="author" required>
</span>
<label>
@@ -39,16 +40,21 @@
<span>
<label for="short-description">Short description</label>
<input type="text" name="short-description" id="short-description">
<input type="text" name="short-description" id="short-description" maxlength="100" required spellcheck="true">
</span>
<span>
<label for="url">URL</label>
<input type="url" name="url" id="url" required>
</span>
<span id="full-description-box">
<label for="full-description">Full description</label>
<textarea name="full-description" id="full-description"></textarea>
<textarea name="full-description" id="full-description" spellcheck="true"></textarea>
</span>
<span id="btn-bar">
<input type="submit" value="Add" id="btn-add" class="btn suggested">
<input type="submit" value="Add" id="btn-add" class="btn suggested" disabled>
<input type="reset" value="Cancel" id="btn-cancel" class="btn">
</span>
</form>