| | |
| | | <label>密码</label> |
| | | <input type="text" autocomplete="off" th:value="${ospfMonitor.password}" class="validate[required,maxSize[50]] form-control" name="password" id="password" placeholder=""> |
| | | </div> |
| | | <div class="form-group"> |
| | | <label><font color="red">*</font>连接类型</label> |
| | | <select class="validate[required] form-control" name="remoteType" id="remoteType"> |
| | | <option value="">请选择</option> |
| | | <option value="TELNET" th:selected="${ospfMonitor.remoteType == 'TELNET'}">TELNET</option> |
| | | <option value="SSH" th:selected="${ospfMonitor.remoteType == 'SSH'}">SSH</option> |
| | | </select> |
| | | </div> |
| | | </div> |
| | | <!-- /.card-body --> |
| | | |