index.html 1.22 KB
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"   />
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
        <title>Haptic Recording</title>
        <link rel="stylesheet" href="{{url_for('static', filename = 'style.css')}}">
        <style>
            #start {
                width:100px;
    background-color: #f8585b;
    border: none;
    color:#fff;
    padding: 15px 0;
    border-radius:10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 4px;
    cursor: pointer;
            }
        </style>
    </head>
    <body>
        <div style="text-align: center; padding-top: 10%;">
            <h1>Haptic Data Recording</h1>
            <p style="margin-top: 2%;">Subeen Kang & Jinhyeong Park</p>
            <form method ="post" action="/record">
                <button style="margin-top: 10%;" type="submit" id="start" > START </button>
            </form>
        </div>
    <script type="module" src="{{url_for('static', filename = 'app.js')}}"></script>
    </body>
</html>