youtube_live_calendar/views/admin/channel-new.ejs

36 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/hyAdmin/common.css">
</head>
<%- include("../partials/head") %>
<body>
<%- include("../partials/admin/header") %>
<div class="header-spacer"></div>
<div class="main-content">
<h1>新しいチャンネルを追加</h1>
<form action="/hyAdmin/channel/new" method="POST" class="admin-form">
<div class="form-group">
<label for="name">チャンネル名:</label>
<input type="text" id="name" name="name" placeholder="例: Example Channel" required>
</div>
<div class="form-group">
<label for="channel_handle">チャンネルハンドル (例: @example):</label>
<input type="text" id="channel_handle" name="channel_handle" placeholder="例: @example">
</div>
<div class="form-group">
<label for="youtube_id">YouTube ID (例: UC_xxx...):</label>
<input type="text" id="youtube_id" name="youtube_id" placeholder="例: UC_xxx...">
</div>
<p class="form-note">注意: 「チャンネルハンドル」または「YouTube ID」のいずれかを必ず入力してください。</p>
<div class="form-actions">
<button type="submit" class="btn btn-add">チャンネルを追加</button>
<a href="/hyAdmin/channel" class="btn btn-back">戻る</a>
</div>
</form>
</div>
</body>
</html>