48 lines
2.4 KiB
HTML
48 lines
2.4 KiB
HTML
{php include pubTemplate("header")}
|
||
|
||
<div class="container">
|
||
|
||
|
||
<nav aria-label="breadcrumb">
|
||
<ol class="breadcrumb">
|
||
<li class="breadcrumb-item"><a href="{SITE_URL}">首页</a></li>
|
||
<li class="breadcrumb-item"><a href="{tsUrl('group')}">友链</a></li>
|
||
<li class="breadcrumb-item active" aria-current="page">友链申请</li>
|
||
</ol>
|
||
</nav>
|
||
|
||
|
||
|
||
<div class="card">
|
||
<div class="card-body">
|
||
|
||
<div class="row">
|
||
<div class="col-md-2"></div>
|
||
<div class="col-md-8">
|
||
|
||
<form role="form" method="POST" action="{SITE_URL}index.php?app=friendlinks&ac=create&ts=do" enctype="multipart/form-data">
|
||
|
||
<div class="form-group">
|
||
<label>*站点链接(带http://或https://)</label>
|
||
<input name="path" type="text" class="form-control" placeholder="http:// or https://">
|
||
</div> <div class="form-group"> <label>*站点名字</label> <input name="name" type="text" class="form-control"> </div>
|
||
<div class="form-group"> <label>网站图片or LOGO(注意防盗链)</label> <input name="face" type="text" class="form-control" placeholder="http:// or https://"> </div>
|
||
<div class="form-group">
|
||
<label>简单介绍</label>
|
||
<textarea style="min-height:100px;" class="form-control" name="about"></textarea>
|
||
</div> <div class="form-group"> <label>*Email</label> <input name="email" type="email" class="form-control"> </div> <div class="form-group"> <label>验证码:</label> <div class="d-flex flex-row align-items-start"> <div class="d-flex flex-column"> <input name="authcode" type="text" class="form-control" placeholder="" check-type="required"> </div> <div class="d-flex ml-1"> <img id="imagecode" align="absmiddle" src="{SITE_URL}index.php?app=pubs&ac=code" onclick="javascript:newgdcode(this,this.src);" title="点击刷新验证码" alt="点击刷新验证码" style="cursor:pointer;" /> <a href="javascript:void('0');" onclick="changeImageCode();"></a> </div> </div> </div>
|
||
<input type="hidden" name="token" value="{$_SESSION['token']}" />
|
||
<button type="submit" class="btn btn-sm btn-info">提交</button>
|
||
</form>
|
||
</div>
|
||
<div class="col-md-2"></div>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
</div>
|
||
|
||
|
||
|
||
</div>
|
||
{php include pubTemplate("footer")} |