-
Notifications
You must be signed in to change notification settings - Fork 2
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 #35 from cloud-barista/feature/update-web-gui
Feature/update web gui
- Loading branch information
Showing
13 changed files
with
619 additions
and
45 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
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
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,57 @@ | ||
<h1 class="mt-4">백업</h1> | ||
<ol class="breadcrumb mb-4"> | ||
<li class="breadcrumb-item">백업</li> | ||
<li class="breadcrumb-item active">Back Up</li> | ||
</ol> | ||
|
||
<div class="card mb-4 col-auto"> | ||
<div class="card-header"> | ||
<i class="fa-solid fa-clone"></i> | ||
Back Up | ||
</div> | ||
<div class="card-body"> | ||
<!-- <form action="/backup" method="POST"> --> | ||
<form id="backForm"> | ||
<input type="hidden" id="backSource" value="backup"> | ||
<input type="hidden" id="backDest" value="backup"> | ||
|
||
<label for="back-mysql-srcHost" class="form-label">Back Up</label> | ||
|
||
<div class="input-group mb-3"> | ||
<span class="input-group-text"><i class="fa-solid fa-cloud"></i></span> | ||
<select class="form-select" id="srcProvider" name="srcProvider"> | ||
<option value="aws">AWS</option> | ||
<option value="gcp">GCP</option> | ||
<option value="ncp">NCP</option> | ||
<option value="on-premise">On-premise</option> | ||
</select> | ||
</div> | ||
|
||
<div class="input-group mb-3"> | ||
<span class="input-group-text"><i class="fa-solid fa-house"></i></span> | ||
<div class="form-floating"> | ||
<input type="text" class="form-control" id="back-mysql-srcHost" name="srcHost" placeholder="호스트명 / IP" required> | ||
<label for="back-mysql-host">호스트명 / IP</label> | ||
</div> | ||
</div> | ||
|
||
<div class="input-group mb-3"> | ||
<span class="input-group-text"><i class="fa-solid fa-flag"></i></span> | ||
<div class="form-floating"> | ||
<input type="text" class="form-control" id="back-mysql-srcPort" name="srcPort" placeholder="포트" required> | ||
<label for="back-mysql-port">포트</label> | ||
</div> | ||
</div> | ||
|
||
<div class="input-group mb-3"> | ||
<span class="input-group-text"><i class="fa-solid fa-user"></i></span> | ||
<div class="form-floating"> | ||
<input type="text" class="form-control" id="back-mysql-srcUsername" name="srcUsername" placeholder="사용자" required> | ||
<label for="back-mysql-username">사용자</label> | ||
</div> | ||
</div> | ||
|
||
<button type="submit" class="btn btn-primary" id="submitBtn">실행</button> | ||
</form> | ||
</div> | ||
</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
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.