Skip to content

Commit

Permalink
Merge pull request #2 from Kishan-Ved/latex2
Browse files Browse the repository at this point in the history
Latex2
  • Loading branch information
Kishan-Ved authored Dec 28, 2023
2 parents bdd68d9 + c3a2c3d commit b047da3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
<div class="container-fluid">
<div class="row">
<div class="col-md-6" id="content">
<h1>Professional Resumes in perfect LaTeX</h1><br><br>
<h1>Professional Resumes in perfect LaTeX</h1><br>
<h2>No code required.</h2><br><br>
<h2>Steps to Generate Your Resume:</h2>
<ul>
<li>Step 1: Click the button below.</li>
Expand Down
20 changes: 14 additions & 6 deletions resumegenerator.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,11 @@ <h3>Academic Details</h3>

<div id="interns-container">
<h3>Internships</h3>
<div>(If you dont want to include this, leave it blank and delete this section from the LaTeX code generated.)</div>
<div class="form-group" id="interns">
<input type="text" placeholder="Intern Title and company name" class="form-control internships my-2"
id="internTitleF">
<input type="text" placeholder="Company/Role information" class="form-control my-2"
<input type="text" placeholder="Company/Role information. Appears in italics under the title." class="form-control my-2"
id="internInfoF">
<input type="text" placeholder="Project Link" class="form-control my-2"
id="internLinkF">
Expand All @@ -108,9 +109,11 @@ <h3>Internships</h3>
</div>
</div>
<button onclick="addNewIntern()" class="btn btn-dark btn-lg" id="internaddbutton">Add This</button>
<div>You must click the button to add this to LaTeX code.</div><br>

<div id="projects-container">
<h3>Projects</h3>
<div>(If you dont want to include this, leave it blank and delete this section from the LaTeX code generated.)</div>
<div class="form-group" id="projects">
<input type="text" placeholder="Project Title" class="form-control my-2"
id="projectTitleF">
Expand All @@ -127,8 +130,10 @@ <h3>Projects</h3>
</div>
</div>
<button onclick="addNewProject()" class="btn btn-dark btn-lg" id="internaddbutton">Add This</button>
<div>You must click the button to add this to LaTeX code.</div><br>

<h3>Skills</h3>
<div>(If you dont want to include this, leave it blank and delete this section from the LaTeX code generated.)</div>
<div class="form-group" id="skills">

<input type="text" placeholder="Name your skill Ex: Technical, Finance" class="form-control my-2"
Expand All @@ -137,8 +142,10 @@ <h3>Skills</h3>
class="form-control my-2" rows="1" id="skilldescriptionF"></textarea>
</div>
<button onclick="addNewSkill()" class="btn btn-dark btn-lg">Add This</button>
<div>You must click the button to add this to LaTeX code.</div><br>

<h3>Position of Responsibility</h3>
<div>(If you dont want to include this, leave it blank and delete this section from the LaTeX code generated.)</div>
<div class="form-group" id="PORs">
<input type="text" placeholder="Name your POR" class="form-control my-2" id="PORNameF">
<textarea type="text" placeholder="describe your POR" class="form-control my-2" rows="1"
Expand All @@ -149,6 +156,7 @@ <h3>Position of Responsibility</h3>
id="PORdurationF">
</div>
<button onclick="addNewPOR()" class="btn btn-dark btn-lg">Add This</button>
<div>You must click the button to add this to LaTeX code.</div><br>


<!-- <div class="form-group">
Expand Down Expand Up @@ -179,7 +187,7 @@ <h3>Position of Responsibility</h3>
<div class="cv-template" id="cv-template">
<div class="container-md p-2" id="Cvtemplate">
<h1 class="text-center my-2">Resume Preview</h1>
<h5 class="text-center my-2">Only a preview. Differs from the LaTeX output. <br> Check the LaTeX code for a clean and professional resume.</h5>
<h5 class="text-center my-2">A rough preview. Differs from the LaTeX output. <br> Check the LaTeX code for a clean and professional resume.</h5>

<!--Personal details here-->
<div class="row">
Expand Down Expand Up @@ -519,25 +527,25 @@ <h5 class="text-center my-2">Only a preview. Differs from the LaTeX output. <br>
\resheading{\textbf{ INTERNSHIPS} }
\vspace{-0.4cm}
\begin{itemize}\itemsep\isep
<span id="userEnteredInternships">Branch</span>
<span id="userEnteredInternships">DELETE THIS</span>
\end{itemize}

\resheading{\textbf{ PROJECTS} }
\vspace{-0.4cm}
\begin{itemize}\itemsep\isep
<span id="userEnteredProjects">Branch</span>
<span id="userEnteredProjects">DELETE THIS</span>
\end{itemize}

\resheading{\textbf{TECHNICAL SKILLS} }
\vspace{-0.4cm}
\begin{itemize} \itemsep \isep
<span id="userEnteredSkills">Branch</span>
<span id="userEnteredSkills">DELETE THIS</span>
\end{itemize}

\resheading{\textbf{POSITIONS OF RESPONSIBILITY} }
\vspace{-0.4cm}
\begin{itemize} \itemsep \isep
<span id="userEnteredPORs">Branch</span>
<span id="userEnteredPORs">DELETE THIS</span>
\end{itemize}

\end{document}
Expand Down

0 comments on commit b047da3

Please sign in to comment.