116 lines
4.9 KiB
HTML
116 lines
4.9 KiB
HTML
<!doctype html>
|
|
<html lang="zh-Hant">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>編輯練習紀錄|水晶練習室</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet">
|
|
<link href="../css/style.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark sk-navbar sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="../index.html"><i class="bi bi-gem me-1"></i>水晶練習室</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mainNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="mainNav">
|
|
<ul class="navbar-nav ms-auto align-items-lg-center gap-lg-1">
|
|
<li class="nav-item"><a class="nav-link" href="../index.html">練習室首頁</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="../index.html#today">今日訓練</a></li>
|
|
<li class="nav-item"><a class="nav-link active" href="index.html">我的練習紀錄</a></li>
|
|
<li class="nav-item"><a class="nav-link disabled" href="#" aria-disabled="true">課程庫</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="../index.html#progress">個人進度</a></li>
|
|
<li class="nav-item ms-lg-2">
|
|
<a class="btn btn-brand btn-sm" href="../admin/index.html">後台管理</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container py-5">
|
|
<h1 class="h3 mb-4 text-white"><i class="bi bi-pencil-square me-2"></i>編輯練習紀錄</h1>
|
|
|
|
<div class="card sk-card sk-surface p-4" style="max-width: 42rem;">
|
|
<form>
|
|
<div class="row g-3">
|
|
|
|
<div class="col-md-6">
|
|
<label for="practiceDate" class="form-label">練習日期</label>
|
|
<input type="date" class="form-control" id="practiceDate" value="2026-07-16">
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
<label for="practiceType" class="form-label">訓練類型</label>
|
|
<select class="form-select" id="practiceType">
|
|
<option>vocal</option>
|
|
<option selected>舞蹈</option>
|
|
<option>Rap</option>
|
|
<option>舞台表現</option>
|
|
<option>體能</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
<label for="practiceSong" class="form-label">練習歌曲</label>
|
|
<select class="form-select" id="practiceSong">
|
|
<option>Couple</option>
|
|
<option selected>Road Fighter</option>
|
|
<option>Com' Back</option>
|
|
<option>Chivalry</option>
|
|
<option>The Way This Guy Lives</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
<label for="practiceMinutes" class="form-label">練習分鐘數</label>
|
|
<input type="number" class="form-control" id="practiceMinutes" value="40">
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<label for="practiceContent" class="form-label">練習內容</label>
|
|
<textarea class="form-control" id="practiceContent" rows="2">整段主歌+副歌走位</textarea>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<label for="practiceCompletion" class="form-label d-flex justify-content-between">
|
|
<span>今日完成度</span>
|
|
<span class="text-body-secondary" id="completionValue">85%</span>
|
|
</label>
|
|
<input type="range" class="form-range" id="practiceCompletion" min="0" max="100" value="85"
|
|
oninput="document.getElementById('completionValue').textContent = this.value + '%'">
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<label for="practiceNote" class="form-label">練習心得</label>
|
|
<textarea class="form-control" id="practiceNote" rows="3">隊形轉換卡點抓得比昨天準,副歌動作幅度還要再放大。</textarea>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<div class="form-check form-switch">
|
|
<input class="form-check-input" type="checkbox" role="switch" id="practiceDone" checked>
|
|
<label class="form-check-label" for="practiceDone">是否完成</label>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="d-flex gap-2 mt-4">
|
|
<button type="submit" class="btn btn-brand">儲存變更</button>
|
|
<a class="btn btn-outline-brand" href="index.html">取消</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="sk-footer text-center py-4">
|
|
<small>© 2026 水晶練習室</small>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|