-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Refactoring Detector - Code</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div class="container">
<h1>Refactoring Detector - Code</h1>
<textarea id="code-text" placeholder="Paste your code here..."></textarea>
<button id="refactor-button">Detect refactor</button>
<div class="results">
<div class="tabs">
<button class="tab-button active" data-tab="result">Original Result</button>
<button class="tab-button" data-tab="translate">Translated Result</button>
</div>
<div id="result" class="result-box tab-content active"></div>
<div id="translate" class="result-box tab-content"></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/15.0.3/marked.min.js" integrity="sha512-7aRjMGJX+VgTMGWgWLpQxavdTKRc2LwCTAS4LmB7OLwGTpH84ehHQoAY/y1fUfprr2yMFC6toDLHpbGaDth9VQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="assets/js/script.js"></script>
</body>
</html>