You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>LocalStorage</title>
|
|
<link rel="stylesheet" href="css/bootstrap.css">
|
|
</head>
|
|
<body class="bg-light">
|
|
<div class="container">
|
|
<h1 class="text-center mb-4">Muj profil (localstorage)</h1>
|
|
|
|
<!-- Pozdrav a počet návštev -->
|
|
<div class="card shadow-sm p-4 text-center">
|
|
<h2 id="welcomeText"> Vítej, uživateli!</h2>
|
|
<p id="visitCounter">Na této stránce jsi poprvé.</p>
|
|
</div>
|
|
|
|
<!-- formulář pro jméno -->
|
|
<div class="card shadow-sm p-4">
|
|
<h4>Nastavení jména</h4>
|
|
<div class="input-group mb-3">
|
|
<input type="text" id="nameInput" class="form-control" placeholder="Tvé jméno...">
|
|
<button class="btn btn-outline-primary" onclick="saveName()"">Uložit jméno</button>
|
|
</div>
|
|
<button class="btn btn-outline-danger " onclick="clearData()">Smazat všechna data</button>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="script.js"></script>
|
|
<script src="js/bootstrap.bundle.js"></script>
|
|
</body>
|
|
</html>
|