-
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.
36-migrate to sidepanel instead of popup (#38)
* introduce side bar/side panel * add support for custom jd in sidebar * clear up the screen from prev elemtns * language changes
- Loading branch information
1 parent
c05bfd5
commit 848ef47
Showing
4 changed files
with
94 additions
and
14 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,41 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="./style.css" /> | ||
</head> | ||
<body> | ||
<div class="container popup-main" id="popupMain"> | ||
<div class="mt-4 position-relative py-2 px-4" id="popup"> | ||
<h1>Waltzes - Panel</h1> | ||
<textarea | ||
id="custom-job-description" | ||
class="my-2 form-control" | ||
rows="10" | ||
placeholder="Paste the job description here..." | ||
></textarea> | ||
<button | ||
id="btn" | ||
type="button" | ||
class="btn btn-primary position-relative" | ||
> | ||
<span | ||
class="spinner-grow spinner-grow-sm" | ||
id="loader" | ||
hidden | ||
></span> | ||
Craft Cover Letter! | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<script src="./main.js"></script> | ||
</body> | ||
</html> |
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