38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" %>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
|
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<title>게임 올리기 — 비빔밥</title>
|
|
<link rel="stylesheet" href="${pageContext.request.contextPath}/css/main.css"/>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<h1>WebGL 게임 올리기</h1>
|
|
<p class="lead">Unity WebGL 빌드 폴더 내용을 zip으로 묶어 업로드하세요. 압축 해제 후 최상위에 <code>index.html</code>이 있어야 합니다.</p>
|
|
<form:form modelAttribute="form" method="post" action="${pageContext.request.contextPath}/games"
|
|
enctype="multipart/form-data">
|
|
<form:errors path="*" element="div"/>
|
|
<label>제목
|
|
<form:input path="title" required="true"/>
|
|
</label>
|
|
<form:errors path="title" element="p"/>
|
|
<label>슬러그 (URL, 소문자·숫자·하이픈)
|
|
<form:input path="slug" placeholder="my-cool-game" required="true"/>
|
|
</label>
|
|
<form:errors path="slug" element="p"/>
|
|
<label>설명 (선택)
|
|
<form:textarea path="description" rows="4"/>
|
|
</label>
|
|
<label>빌드 zip
|
|
<input type="file" name="file" accept=".zip,application/zip" required/>
|
|
</label>
|
|
<button type="submit">업로드</button>
|
|
</form:form>
|
|
<p><a href="${pageContext.request.contextPath}/">홈</a></p>
|
|
</main>
|
|
</body>
|
|
</html>
|