mirror of https://github.com/helloxz/imgurl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.7 KiB
68 lines
2.7 KiB
7 years ago
|
<?php
|
||
|
$title = "ImgURL - 简单、纯粹的图床程序。";
|
||
|
include_once("./tpl/user/header.php");
|
||
|
?>
|
||
|
|
||
|
<div class="layui-container">
|
||
|
<div class="layui-row">
|
||
|
<div class="layui-col-lg12 layui-col-xs10">
|
||
|
<div class="msg"><i class="layui-icon"></i> 该功能可以将图片上传至SM.MS图床。</div>
|
||
|
<!-- 上传图片表单 -->
|
||
|
<div class = "smfile">
|
||
|
<a href="javascript:;" class="file">
|
||
|
<input type="file" name="smfile" id="sm">
|
||
|
<i class="layui-icon" style = "font-size:6em;"></i>
|
||
|
</a>
|
||
|
</div>
|
||
|
<!-- 上传图片表单END -->
|
||
|
</div>
|
||
|
</div>
|
||
|
<div style = "clear:both;"></div>
|
||
|
<!-- 图片上传成功 -->
|
||
|
<div class="layui-row" id = "upok">
|
||
|
<div>
|
||
|
<div id="showpic" class = "layui-col-lg5"><a href="" target = "_blank"><img src=""></a></div>
|
||
|
<div id="piclink" class = "layui-col-lg6 layui-col-md-offset1">
|
||
|
<table class="layui-table" lay-skin="nob">
|
||
|
<colgroup>
|
||
|
<col width="80">
|
||
|
<col width="400">
|
||
|
<col>
|
||
|
</colgroup>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>URL</td>
|
||
|
<td><input type="text" class="layui-input" id = "url"></td>
|
||
|
<td><a href="javascript:;" class = "layui-btn layui-btn-sm" onclick = "copy('url')">复制</a></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>HTML</td>
|
||
|
<td><input type="text" class="layui-input" id = "html"></td>
|
||
|
<td><a href="javascript:;" class = "layui-btn layui-btn-sm" onclick = "copy('html')">复制</a></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>MarkDown</td>
|
||
|
<td><input type="text" class="layui-input" id = "markdown"></td>
|
||
|
<td><a href="javascript:;" class = "layui-btn layui-btn-sm" onclick = "copy('markdown')">复制</a></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>BBcode</td>
|
||
|
<td><input type="text" class="layui-input" id = "bbcode"></td>
|
||
|
<td><a href="javascript:;" class = "layui-btn layui-btn-sm" onclick = "copy('bbcode')">复制</a></td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- 图片上传成功END -->
|
||
|
</div>
|
||
|
|
||
|
<?php
|
||
|
include_once("./tpl/user/footer.php");
|
||
|
?>
|
||
|
<script>
|
||
|
$(document).ready(function(){
|
||
|
$("#smfile input:text").attr("name",'smfile');
|
||
|
});
|
||
|
</script>
|