diff options
author | Dan Timoney <dtimoney@att.com> | 2021-04-12 08:17:37 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-04-12 08:17:37 -0400 |
commit | 5cabe36fe85a780a9fb808343d6341f15da13524 (patch) | |
tree | 4893568c164dfaa82226eacc75fec4d622acb398 /admportal/views/partials/ncs_credentials.ejs | |
parent | 41a3f91544616f0e785e0e9e552e9fd0234cc9b3 (diff) |
Fix ccsdk version and remove admportal2.1.4
Fix ccsdk versions and remove admportal, which is no longer supported
Change-Id: Iaee9bd2b7d5d7345f889357684df18d53db466a1
Issue-ID: SDNC-1507
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: a1d57d8f5131414429f9ef2d8b0468004d253d0a
Diffstat (limited to 'admportal/views/partials/ncs_credentials.ejs')
-rw-r--r-- | admportal/views/partials/ncs_credentials.ejs | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/admportal/views/partials/ncs_credentials.ejs b/admportal/views/partials/ncs_credentials.ejs deleted file mode 100644 index a35b7e48..00000000 --- a/admportal/views/partials/ncs_credentials.ejs +++ /dev/null @@ -1,74 +0,0 @@ -<div class="modal fade" id="add_ncs_credentials" tabindex="-1" role="dialog" - aria-labelledby="add_ncs_credentials_label" aria-hidden="true"> - <div class="modal-dialog"> - <div class="modal-content"> - <div class="modal-header"> - <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> - <h4 class="modal-title">Add NCS Credentials</h4> - </div> - <div class="modal-body"> - <form name="addForm" role="form" action="/ucpe/addNcsCredentials" method="POST"> - <div class="form-group"> - <label for="nf_customer_name">*Customer Name</label> - <input type="text" class="form-control" maxlength="255" aria-describedby="helpCName" name="nf_customer_name" id="nf_customer_name" placeholder="varchar(255)"> - <span id="helpCName" class="help-block">The Customer Name must match exactly whats in the NCS Servers table.</span> - </div> - <div class="form-group"> - <label for="nf_ncs_username">*NCS Username</label> - <input type="text" class="form-control" maxlength="255" name="nf_ncs_username" id="nf_ncs_username" placeholder="varchar(255)"> - </div> - <div class="form-group"> - <label for="nf_ncs_password">*NCS Password</label> - <input type="password" class="form-control" maxlength="255" name="nf_ncs_password" id="nf_ncs_password" placeholder="varbinary(255)"> - </div> - <div class="form-group"> - <label for="nf_phs_password">*Confirm NCS Password</label> - <input type="password" class="form-control" maxlength="255" name="nf_confirm_ncs_password" id="nf_confirm_ncs_password" placeholder="varbinary(255)"> - </div> - <div class="form-group"> - <input type="hidden" name="nf_action" id="nf_action"> - <button type="button" class="btn btn-primary" onclick="submitNcsCredentials(this.form);">Submit</button> - <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> - </div> - </form> - </div> - </div> - </div> - </div> - - <div class="modal fade" id="update_ncs_credentials" tabindex="-1" role="dialog" - aria-labelledby="update_ncs_credentials_label" aria-hidden="true"> - <div class="modal-dialog"> - <div class="modal-content"> - <div class="modal-header"> - <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> - <h4 class="modal-title">Update NCS Credentials</h4> - </div> - <div class="modal-body"> - <form role="form" action="/ucpe/updateNcsCredentials" method="POST"> - <div class="form-group"> - <label for="uf_customer_name">*Customer Name</label> - <input readonly type="text" class="form-control" name="uf_customer_name" id="uf_customer_name"> - </div> - <div class="form-group"> - <label for="uf_ncs_username">*NCS Username</label> - <input type="text" class="form-control" maxlength="255" name="uf_ncs_username" id="uf_ncs_username"> - </div> - <div class="form-group"> - <label for="uf_ncs_password">*NCS Password</label> - <input type="password" class="form-control" maxlength="255" name="uf_ncs_password" id="uf_ncs_password"> - </div> - <div class="form-group"> - <label for="nf_phs_password">*Confirm NCS Password</label> - <input type="password" class="form-control" maxlength="255" name="uf_confirm_ncs_password" id="uf_confirm_ncs_password" placeholder="varbinary(255)"> - </div> - <div class="form-group"> - <input type="hidden" name="uf_action" id="uf_action"> - <button type="button" class="btn btn-primary" onclick="submitNcsCredentials(this.form);">Submit</button> - <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> - </div> - </form> - </div> - </div> - </div> - </div> |