Initial commit for OpenECOMP SDN-C OA&M
[sdnc/oam.git] / admportal / views / partials / excluded_v6_addresses.ejs
diff --git a/admportal/views/partials/excluded_v6_addresses.ejs b/admportal/views/partials/excluded_v6_addresses.ejs
new file mode 100644 (file)
index 0000000..d155383
--- /dev/null
@@ -0,0 +1,38 @@
+   <div class="modal fade" id="excluded-v6-addresses-modal" tabindex="-1" role="dialog" 
+               aria-labelledby="excluded-v6-addresses-modal-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">&times;</button>
+            <h4 class="modal-title">excluded-v6-addresses</h4>
+          </div>
+          <div class="modal-body">
+            <form role="form" action="" method="POST">
+              <div class="form-group">
+                <label for="excluded_v6_address">excluded-v6-address</label>
+                <input type="text" class="form-control" name="excluded_v6_address" id="excluded_v6_address">
+              </div>
+
+<!--
+              <div class="form-group">
+                               <input type="hidden" name="svc_instance_id" id="svc_instance_id">
+                               <input type="hidden" name="uf_action" id="uf_action">
+                <button type="button" class="btn btn-primary" onclick="submit(this.form);">Submit</button>
+                               <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
+              </div>
+-->
+           </form>
+          </div>
+      </div>
+    </div>
+  </div>
+
+<script type="text/javascript">
+function submit(form){
+       $('#excluded-v6-addresses-modal').modal('hide');
+       form.action = form.uf_action.value;
+       form.submit();
+       return;
+}
+</script>
+