-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateDeck.html
More file actions
26 lines (22 loc) · 764 Bytes
/
createDeck.html
File metadata and controls
26 lines (22 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE HTML>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=MedievalSharp" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<script src="createDeck.js"></script>
<h1 id="nameOfDeck"> This is a new Div </h1>
<form action="/addCard" method="POST">
<input type="text" placeholder="name" name="cardName" id="addCard"></input>
<button type="submit" onclick="appendCardDiv()"> Add Card </button>
</form>
<form action="/removeLastCard" method="POST">
<button type="submit" id="removeCard"> Delete Deck </button>
</form>
<div id="cardList"></div>
</div>
</body>
</html>