Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Donsk authored Sep 9, 2022
1 parent 9abb27d commit 350728d
Showing 1 changed file with 85 additions and 0 deletions.
85 changes: 85 additions & 0 deletions questions.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!DOCTYPE html>

<html>

<head>
<title>Fourier Questions</title>
<script type = "module" src = "flashcardcode.js"></script>
</head>

<body>

<h1 style = "text-align: center">
WIP Question Submission
</h1>

<div id="newQContainer" style = "text-align: center">
<form id="QcardForm">
<input id="newQ" type="text" placeholder="Type Question Here" style = "text-align: center" size = "50">
<br>
<input id = "previewQ" type = "button" value = "Preview">
<br>
<input id="submitQ" type="button" value="Submit Question"><!--onclick="cardAdd()"-->
<br>
</form>
</div>

<div id = "Qpreviewdiv">
<span>
Preview:
</span>
<div id = "Qpreviewcontainer">
</div>
</div>

<h1 style = "text-align: center">
Questions
</h1>

<p id="front" style = "text-align: center">
<!-- question lives here -->
</p>

<br>

<hr>

<br>

<div id ="activeCardButtons" style = "text-align: center">
<button id="prev"> <!--onclick="prevCard()"-->
Previous Question
</button>
<br>
<button id="next"> <!--onclick="nextCard()"-->
Next Question
</button>
<br>
</div>

<br>

<div id="newAContainer" style = "text-align: center">
<form id="cardForm">
<input id="newAnswer" type="text" placeholder="Type Answer Here" style = "text-align: center" size = "50">
<br>
<input id = "preview" type = "button" value = "Preview">
<br>
<input id="submit" type="button" value="Submit"><!--onclick="cardAdd()"-->
<br>
</form>
</div>

<div id = "previewdiv">
<span>
Preview:
</span>
<div id = "previewcontainer">
</div>
</div>

<div id = "answers">
</div>

</body>
</html>

0 comments on commit 350728d

Please sign in to comment.