forked from kb-dk/MerMEId
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from Edirom/issue-92
add CRUD module and API endpoints
- Loading branch information
Showing
14 changed files
with
974 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<div xmlns="http://www.w3.org/1999/xhtml" id="confirm_modal" class="modal"> | ||
<!-- Credits to https://www.w3schools.com/howto/howto_css_login_form.asp --> | ||
<span class="close-modal close" title="Close Modal">×</span> | ||
|
||
<!-- Modal Content --> | ||
<form class="modal-content animate"> | ||
<div class="container"> | ||
<h1 id="confirm_modal_heading">Some heading given as @title attribute on the form</h1> | ||
</div> | ||
|
||
<div class="container"> | ||
<p id="confirm_modal_statusmessage">Some error message</p> | ||
</div> | ||
|
||
<div class="container" id="confirm_modal_body"> | ||
<!-- Nothing to see here. The content gets cloned via Javascript from the original form --> | ||
<label><b>Some label</b></label> | ||
<input type="text" name="test" required="required" disabled="disabled" size="40" value="Some input text"/> | ||
</div> | ||
|
||
</form> | ||
<script type="text/javascript" src="../resources/js/confirm.js"> | ||
// | ||
</script> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.