summaryrefslogtreecommitdiff
path: root/resources/views/welcome.blade.php
blob: 36ea65c3ec23ab97b9ecad7a32906742ef88d9c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">

<head>
    <title>Laravel</title>
    <link href="../css/app.css" rel="stylesheet">
</head>

<body>
    <div class="cotnainer" id="container">

    </div>
    <script src="../js/app.js"></script>
    <button type="button" onClick="start()">start</button>
    <button type="button" onClick="stop()">stop</button>
    <button type="button" onClick="reset()">reset</button>
</body>

</html>