-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (32 loc) · 1.81 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pentaland</title>
<link rel="stylesheet" type="text/css" media="all" href="/style/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<section class="container-fluid">
<div class="container">
<div class="d-flex flex-column p-4">
<form class="" id="form" onsubmit="return false;">
<span>Please provide x and y values for the canvas to be created!</span><br>
<label class="mb-3 mt-3" for="canvas-x">X:</label>
<input class="mb-3" id="canvas-x" type="text"><br>
<label class="mb-3" for="canvas-y">Y:</label>
<input class="mb-3" id="canvas-y" type="text"><br>
<button class="p-3 ms-5" type="submit" onclick="getUserCanvas()">Create Canvas</button>
</form>
<div id="canvas" class="pt-3">
</div>
</div>
</div>
</section>
<script src="./index.js" />
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js" integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous"></script>
</body>
</html>