Files
tougao/application/api/view/author/index.html
2026-06-05 11:11:16 +08:00

53 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>作者背调查询</title>
{include file="author/_styles" /}
</head>
<body>
<div class="page-form">
<div class="card">
<div class="card-header">
<div class="card-icon">📋</div>
<h1 class="card-title">医学期刊 · 作者背景调查</h1>
<p class="card-subtitle">青年编委 / 特约审稿人 / 作者资质初审</p>
</div>
<div class="alert alert-info">
填写 <strong>ORCID</strong> 可直接生成报告;未填 ORCID 时<strong>姓氏必填</strong>、机构选填,系统按姓名检索后供您选择。
</div>
{notempty name="error_msg"}
<div class="alert alert-error">{$error_msg|htmlspecialchars}</div>
{/notempty}
<form method="get" action="{$form_action}">
<div class="form-group">
<label class="form-label">ORCID <span class="opt">— 填写后直接出报告</span></label>
<input class="form-input" type="text" name="orcid" placeholder="0000-0002-6388-7847" value="{$orcid|default=''|htmlspecialchars}">
</div>
<div class="form-group">
<label class="form-label">姓 Last Name <span class="opt">— 未填 ORCID 时必填</span></label>
<input class="form-input" type="text" name="lastName" placeholder="PENG" value="{$last_name|default=''|htmlspecialchars}">
</div>
<div class="form-group">
<label class="form-label">名 First Name <span class="opt">— 选填</span></label>
<input class="form-input" type="text" name="firstName" placeholder="Sijing" value="{$first_name|default=''|htmlspecialchars}">
</div>
<div class="form-group">
<label class="form-label">机构 Institution <span class="opt">— 选填,用于候选列表排序</span></label>
<input class="form-input" type="text" name="institution" placeholder="University of Ibadan" value="{$institution|default=''|htmlspecialchars}">
</div>
<button class="btn-primary" type="submit">生成背调报告</button>
</form>
<p class="form-foot">
作者可在 <a href="https://orcid.org/" target="_blank" rel="noopener">orcid.org</a> 注册或查询自己的 ORCID iD
</p>
</div>
</div>
</body>
</html>