换成单集群模式
This commit is contained in:
@@ -3,41 +3,51 @@
|
||||
<h3>创建用户</h3>
|
||||
|
||||
<form class="ui form" method="post" data-tea-action="$" data-tea-success="success">
|
||||
<csrf-token></csrf-token>
|
||||
<table class="ui table definition selectable">
|
||||
<csrf-token></csrf-token>
|
||||
<table class="ui table definition selectable">
|
||||
<tr>
|
||||
<td class="title">用户名 *</td>
|
||||
<td>
|
||||
<input type="text" name="username" maxlength="100" ref="focus"/>
|
||||
<input type="text" name="username" maxlength="100" ref="focus" />
|
||||
<p class="comment">用户名只能是英文、数字、下划线的组合。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>密码 *</td>
|
||||
<td>
|
||||
<input type="password" name="pass1" maxlength="100"/>
|
||||
<input type="password" name="pass1" maxlength="100" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>确认密码 *</td>
|
||||
<td>
|
||||
<input type="password" name="pass2" maxlength="100"/>
|
||||
<input type="password" name="pass2" maxlength="100" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>全名 *</td>
|
||||
<td>
|
||||
<input type="text" name="fullname" maxlength="100"/>
|
||||
<input type="text" name="fullname" maxlength="100" />
|
||||
<p class="comment">用户姓名或者公司名称等等。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>关联集群 *</td>
|
||||
<td>CDN关联集群 *</td>
|
||||
<td>
|
||||
<cluster-selector></cluster-selector>
|
||||
<p class="comment">用户发布的网站会自动部署到此集群。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr v-if="hasHTTPDNSFeature">
|
||||
<td>HTTPDNS关联集群</td>
|
||||
<td>
|
||||
<select class="ui dropdown auto-width" name="httpdnsClusterId" v-model="httpdnsClusterId">
|
||||
<option value="0">[未选择]</option>
|
||||
<option v-for="cluster in httpdnsClusters" :value="cluster.id">{{cluster.name}}</option>
|
||||
</select>
|
||||
<p class="comment">用户发布的 HTTPDNS 应用会自动关联到此集群。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr v-show="teaIsPlus">
|
||||
<td>开通功能</td>
|
||||
<td>
|
||||
@@ -54,19 +64,19 @@
|
||||
<tr>
|
||||
<td>手机号</td>
|
||||
<td>
|
||||
<input type="text" name="mobile" maxlength="11"/>
|
||||
<input type="text" name="mobile" maxlength="11" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>联系电话</td>
|
||||
<td>
|
||||
<input type="text" name="tel" maxlength="100"/>
|
||||
<input type="text" name="tel" maxlength="100" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>电子邮箱</td>
|
||||
<td>
|
||||
<input type="text" name="email" maxlength="100"/>
|
||||
<input type="text" name="email" maxlength="100" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -83,6 +93,6 @@
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<submit-btn></submit-btn>
|
||||
</table>
|
||||
<submit-btn></submit-btn>
|
||||
</form>
|
||||
Reference in New Issue
Block a user