forked from mtw16-FSU/Advanced-Math-Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharclength-circle.html
More file actions
39 lines (36 loc) · 1.54 KB
/
arclength-circle.html
File metadata and controls
39 lines (36 loc) · 1.54 KB
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
# arclength-circle.html
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Concert+One&display=swap" rel="stylesheet">
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML' async>
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
{% load static %}
<link href="{% static 'css/main.css' %}" rel="stylesheet">
<script type="text/javascript" src="{% static 'scripts/init.js' %}"></script>
<script type="text/javascript" src="{% static 'scripts/latex.js' %}"></script>
</head>
<body onload="init(); initAlt('geometry-menu'); document.getElementById('geometry-menu').style.color = '#ffffff'; document.getElementById('graph-menu').style.color = '#fff000';" id="body">
<div class="main">
{% include "header.html" %}
{% include "menu.html" %}
<div class="main-section">
<h2>Arc Length of Circle</h2>
{% include "symbol-bar-systems.html" %}
<form class="equation-form" method="post">{% csrf_token %}
{{ form.as_p }}
<div id="equation-input">
<textarea tabindex="-1" id="textarea"></textarea><div id="cursor" class="1">|</div></div>
<input class="equation-submit-button" type="submit" value="Submit">
</form>
<div id="equation-display">{{ formattedEquation }}</div>
</div>
<div style="clear:both;">
</div>
</div>
<br />
<br />
</body>
</html>