Refactored editor.page.html to use a Vue-style `data()` function for reactive state, adding a new `content` property and cleaning up redundant inline styles. Updated profile-form.html to replace single `error` handling with field-specific `errors.<field>` bindings, improving form validation clarity and user feedback.
15 lines
No EOL
551 B
HTML
15 lines
No EOL
551 B
HTML
<div id="main-content">
|
|
<div class="content-section active">
|
|
<div class="player-container">
|
|
<div class="video-container">
|
|
<!-- Video element will be inserted here -->
|
|
</div>
|
|
<div class="player-controls">
|
|
<button class="play-btn">Play</button>
|
|
<input type="range" class="slider progress-slider" min="0" max="100" value="0">
|
|
<span class="time-display">0:00 / 0:00</span>
|
|
<input type="range" class="slider volume-slider" min="0" max="100" value="80">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |