Changes to cvwizard.scroll.pub

root
root
23 days ago
Initial commit
body.html
Changed around line 1
+
+

CV Wizard

+

Automate CV Screening & Candidate Selection

+
+
+
+
+

Upload CVs

+
+
+
+
+
+

Tailor Requirements

+
+
+
+
+
+

Qualified Candidates

+
+
+
+
+
+

Simplify your hiring process with CV Wizard

+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://cvwizard.scroll.pub
+ metaTags
+ editButton /edit.html
+ title CV Wizard - Automate CV Screening & Candidate Selection
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "8da4c6f9-2302-45e5-8195-694fbd474810",
+ "object": "chat.completion",
+ "created": 1735490679,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ncvwizard.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://cvwizard.scroll.pub\nmetaTags\neditButton /edit.html\ntitle CV Wizard - Automate CV Screening & Candidate Selection\nstyle.css\nbody.html\nscript.js\n---body.html---\n
\n

CV Wizard

\n

Automate CV Screening & Candidate Selection

\n
\n\n
\n
\n

Upload CVs

\n \n \n
\n\n
\n

Tailor Requirements

\n \n \n
\n\n
\n

Qualified Candidates

\n
\n
\n
\n\n
\n

Simplify your hiring process with CV Wizard

\n
\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #f5f5f5;\n --text-color: #333;\n --border-radius: 8px;\n}\n\nbody {\n font-family: 'Segoe UI', sans-serif;\n margin: 0;\n padding: 0;\n color: var(--text-color);\n background-color: var(--secondary-color);\n line-height: 1.6;\n}\n\nheader {\n background-color: var(--primary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nmain {\n max-width: 800px;\n margin: 2rem auto;\n padding: 0 1rem;\n}\n\nsection {\n background: white;\n padding: 1.5rem;\n margin-bottom: 1.5rem;\n border-radius: var(--border-radius);\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n}\n\nh2 {\n color: var(--primary-color);\n margin-bottom: 1rem;\n}\n\ninput[type=\"file\"], textarea {\n width: 100%;\n padding: 0.5rem;\n margin-bottom: 1rem;\n border: 1px solid #ddd;\n border-radius: var(--border-radius);\n}\n\nbutton {\n background-color: var(--primary-color);\n color: white;\n border: none;\n padding: 0.5rem 1rem;\n border-radius: var(--border-radius);\n cursor: pointer;\n transition: background-color 0.3s;\n}\n\nbutton:hover {\n background-color: darken(var(--primary-color), 10%);\n}\n\n#candidate-list {\n display: grid;\n gap: 1rem;\n}\n\n.candidate-card {\n padding: 1rem;\n border: 1px solid #ddd;\n border-radius: var(--border-radius);\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background-color: var(--primary-color);\n color: white;\n margin-top: 2rem;\n}\n\n@media (max-width: 600px) {\n header {\n padding: 1rem;\n }\n\n main {\n padding: 0 0.5rem;\n }\n\n section {\n padding: 1rem;\n }\n}\n---script.js---\ndocument.getElementById('upload-btn').addEventListener('click', function() {\n const files = document.getElementById('cv-upload').files;\n if (files.length > 0) {\n processCVs(files);\n } else {\n alert('Please select at least one CV file.');\n }\n});\n\ndocument.getElementById('generate-jd').addEventListener('click', function() {\n const requirements = document.getElementById('requirements').value;\n if (requirements.trim() !== '') {\n generateJobDescription(requirements);\n } else {\n alert('Please enter job requirements.');\n }\n});\n\nfunction processCVs(files) {\n // Simulate CV processing\n const candidateList = document.getElementById('candidate-list');\n candidateList.innerHTML = '';\n \n Array.from(files).forEach((file, index) => {\n const candidateCard = document.createElement('div');\n candidateCard.className = 'candidate-card';\n candidateCard.innerHTML = `\n

Candidate ${index + 1}

\n

File: ${file.name}

\n

Status: Qualified

\n `;\n candidateList.appendChild(candidateCard);\n });\n}\n\nfunction generateJobDescription(requirements) {\n // Simulate JD generation\n const jd = `Job Description based on requirements:\n \n${requirements}\n\nAdditional details:\n- Competitive salary\n- Flexible working hours\n- Professional development opportunities`;\n\n alert(jd);\n}\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 263,
+ "completion_tokens": 1088,
+ "total_tokens": 1351,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 263
+ },
+ "system_fingerprint": "fp_f1afce2943"
+ }
readme.scroll
Changed around line 1
+ # cvwizard.scroll.pub
+ Website generated by DeepSeek from prompt: I want a website to help me automate cv screening and candidate selection, give me a list of qualified candidates and generate JD automatically according to tailored requirements
script.js
Changed around line 1
+ document.getElementById('upload-btn').addEventListener('click', function() {
+ const files = document.getElementById('cv-upload').files;
+ if (files.length > 0) {
+ processCVs(files);
+ } else {
+ alert('Please select at least one CV file.');
+ }
+ });
+
+ document.getElementById('generate-jd').addEventListener('click', function() {
+ const requirements = document.getElementById('requirements').value;
+ if (requirements.trim() !== '') {
+ generateJobDescription(requirements);
+ } else {
+ alert('Please enter job requirements.');
+ }
+ });
+
+ function processCVs(files) {
+ // Simulate CV processing
+ const candidateList = document.getElementById('candidate-list');
+ candidateList.innerHTML = '';
+
+ Array.from(files).forEach((file, index) => {
+ const candidateCard = document.createElement('div');
+ candidateCard.className = 'candidate-card';
+ candidateCard.innerHTML = `
+

Candidate ${index + 1}

+

File: ${file.name}

+

Status: Qualified

+ `;
+ candidateList.appendChild(candidateCard);
+ });
+ }
+
+ function generateJobDescription(requirements) {
+ // Simulate JD generation
+ const jd = `Job Description based on requirements:
+
+ ${requirements}
+
+ Additional details:
+ - Competitive salary
+ - Flexible working hours
+ - Professional development opportunities`;
+
+ alert(jd);
+ }
style.css
Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #f5f5f5;
+ --text-color: #333;
+ --border-radius: 8px;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ margin: 0;
+ padding: 0;
+ color: var(--text-color);
+ background-color: var(--secondary-color);
+ line-height: 1.6;
+ }
+
+ header {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ main {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ section {
+ background: white;
+ padding: 1.5rem;
+ margin-bottom: 1.5rem;
+ border-radius: var(--border-radius);
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ }
+
+ h2 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ }
+
+ input[type="file"], textarea {
+ width: 100%;
+ padding: 0.5rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ddd;
+ border-radius: var(--border-radius);
+ }
+
+ button {
+ background-color: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 0.5rem 1rem;
+ border-radius: var(--border-radius);
+ cursor: pointer;
+ transition: background-color 0.3s;
+ }
+
+ button:hover {
+ background-color: darken(var(--primary-color), 10%);
+ }
+
+ #candidate-list {
+ display: grid;
+ gap: 1rem;
+ }
+
+ .candidate-card {
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: var(--border-radius);
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background-color: var(--primary-color);
+ color: white;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 600px) {
+ header {
+ padding: 1rem;
+ }
+
+ main {
+ padding: 0 0.5rem;
+ }
+
+ section {
+ padding: 1rem;
+ }
+ }