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.
69 lines
2.2 KiB
69 lines
2.2 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Wishlist/</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
|
|
<script src="main.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1>Wishlist/</h1>
|
|
<p>A place to post your ideas, comments, and wishes for COSI</p>
|
|
</div>
|
|
<div class="content">
|
|
<div class="center">
|
|
<label class="bestButton" for="commentModal">Add wish</label>
|
|
</div>
|
|
<div id="comments">
|
|
<h2 class="center">Ideas:</h2>
|
|
<div id="search" class="center">
|
|
<div class="ATF-container paddVertically">
|
|
<div>
|
|
<input id="search-comment-name" autocomplete="off" spellcheck="false" autocorrect="off" required="" oninput="search(document.getElementById('search-comment-name').value, document.getElementById('search-comment-text').value);">
|
|
<span>Name</span>
|
|
<div></div>
|
|
</div>
|
|
</div>
|
|
<div class="ATF-container paddVertically">
|
|
<div>
|
|
<input id="search-comment-text" autocomplete="off" spellcheck="false" autocorrect="off" required="" oninput="search(document.getElementById('search-comment-name').value, document.getElementById('search-comment-text').value);">
|
|
<span>Text</span>
|
|
<div></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="commentsContent">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<input type="checkbox" id="commentModal">
|
|
<div>
|
|
<div class="modal">
|
|
<div class="right">
|
|
<label for="commentModal" class="close">X</label>
|
|
</div>
|
|
<div class="ATF-container paddVertically">
|
|
<div>
|
|
<input id="add-comment-name" autocomplete="off" spellcheck="false" autocorrect="off" required="">
|
|
<span>Name</span>
|
|
<div></div>
|
|
</div>
|
|
</div>
|
|
<div class="ATF-container paddVertically">
|
|
<div>
|
|
<input id="add-comment-text" autocomplete="off" spellcheck="false" autocorrect="off" required="">
|
|
<span>Comment</span>
|
|
<div></div>
|
|
</div>
|
|
</div>
|
|
<div class="center">
|
|
<button class="bestButton" onclick="submitComment(document.getElementById('add-comment-name').value, document.getElementById('add-comment-text').value);">Add</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|