|
@@ -6,9 +6,11 @@
|
|
|
<form class="form-signin" method="post">
|
|
<form class="form-signin" method="post">
|
|
|
<input type="hidden" id="item_id" name="item_id" value="{$item.item_id}">
|
|
<input type="hidden" id="item_id" name="item_id" value="{$item.item_id}">
|
|
|
<!-- <h3 class="form-signin-heading">新建项目</h3> -->
|
|
<!-- <h3 class="form-signin-heading">新建项目</h3> -->
|
|
|
- <input type="text" class="input-block-level" name="item_name" placeholder="项目名" value="{$item.item_name}" >
|
|
|
|
|
- <input type="text" class="input-block-level" name="item_description" placeholder="项目描述" value="{$item.item_description}">
|
|
|
|
|
- <input type="password" class="input-block-level" name="password" placeholder="访问密码(可选,私密项目请设置密码)" value="{$item.password}">
|
|
|
|
|
|
|
+ <input type="text" class="input-block-level" name="item_name" placeholder="项目名" autocomplete="off" value="{$item.item_name}" >
|
|
|
|
|
+ <input type="text" class="input-block-level" name="item_description" placeholder="项目描述" autocomplete="off" value="{$item.item_description}">
|
|
|
|
|
+ <input style="display:none"><!-- for disable autocomplete on chrome -->
|
|
|
|
|
+ <input style="display:none"><!-- for disable autocomplete on chrome -->
|
|
|
|
|
+ <input type="password" class="input-block-level" name="password" placeholder="访问密码(可选,私密项目请设置密码)" autocomplete="off" value="{$item.password}">
|
|
|
<button class="btn btn-primary" type="submit">提交</button>
|
|
<button class="btn btn-primary" type="submit">提交</button>
|
|
|
<a href="javascript:history.go(-1)" class="btn">返回</a>
|
|
<a href="javascript:history.go(-1)" class="btn">返回</a>
|
|
|
</form>
|
|
</form>
|