File size: 2,694 Bytes
bcb1848 |
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
<!DOCTYPE html>
<html lang="ko">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8">
<title>Spakers in Text</title>
<link rel="stylesheet" href="{{ url_for('static', path='css/finishs.css') }}">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
</head>
<body>
<!-- jQuery ๋ฐ Bootstrap JavaScript ๋ก๋ -->
<script src="https://code.jquery.com/jquery-3.6.4.min.js"
integrity="sha256-oP6HI/tZ1aS9sz3Jr4+6zqbc9BE/l6fLx+Vz2I+H/GL4ZiI/Z5L3hMv8w3yXdBi" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-3ziFjNlAXja/Yb0M7y2BmFvR3s09gRPbrCm0lF+SvL4uIboD5lv3U3BdD7dW7Y3" crossorigin="anonymous"></script>
<div class="background">
<div class="header"><a href="/"><span class="title">Nouvel : Novel for you</span></a></div>
<div class="empty"></div>
<div class="box">
<div class="subtitle">txtํ์ผ ๋ณํ ๊ฒฐ๊ณผ</div>
<div class="explain_box">
<span class="explain">๋ฐ์ ๊ฒฐ๊ณผ๋ ์์ค ์ ์ธ์ฉ๋ฌธ ๋ณ๋ก ๋ฐํ์๋ฅผ ์ธ์ํ ๊ฒฐ๊ณผ์
๋๋ค.</br>
๋ํ ์ฅ๋ฉด ๋ณ๋ก ์ฅ์์ ์๊ฐ์ ์ธ์ํ์์ต๋๋ค.</span>
</div>
<div class = "TLContainer">
<div class = "timeContainer">
<span class = "timelocation">์๊ฐ : {{ time }}</span>
</div>
<div class = "locationContainer">
<span class = "timelocation">์ฅ์ : {{ place }}</span>
</div>
</div>
<div class="itemContainer" id="resultContainer">
{% for out in output %}
<p>{{ out }}</p>
{% endfor %}
</div>
<div class="buttonContainer">
<div class="downloadButtonContainer">
<button id="downloadButton">Download Text File</button>
</div>
<div class="homeButtonContainer">
<button id="homeButton" onClick="location.href='/'">ํ์ผ๋ก ๋์๊ฐ๊ธฐ</button>
</div>
</div>
</div>
<div class="foot">
<div class="footer-text">
<span>๊ณ ๋ ค๋ํ๊ต ์ง๋ฅ์ ๋ณด SW ์์นด๋ฐ๋ฏธ 5์กฐ</span>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../js/finish.js"></script>
</body>
</html> |