{"id":110,"date":"2026-02-26T23:49:08","date_gmt":"2026-02-26T23:49:08","guid":{"rendered":"https:\/\/chameleon.students.mtu.edu\/?page_id=110"},"modified":"2026-03-19T23:55:52","modified_gmt":"2026-03-19T23:55:52","slug":"create-your-profile","status":"publish","type":"page","link":"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/","title":{"rendered":"Create Your Profile"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"110\" class=\"elementor elementor-110\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d2b563 e-flex e-con-boxed e-con e-parent\" data-id=\"5d2b563\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-019c905 elementor-widget elementor-widget-html\" data-id=\"019c905\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n\/* ... Existing Styles ... *\/\n.profile-wrapper { display: flex; justify-content: center; margin-top: 60px; }\n.profile-card { background: #ffffff; width: 800px; padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }\nh2 { margin-top: 35px; margin-bottom: 15px; color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 5px; }\n\ninput, textarea { \n    width: 100%; padding: 10px; margin-bottom: 10px; border-radius: 6px; \n    border: 1px solid #ccc; box-sizing: border-box; font-family: inherit;\n}\n\n.row { display: flex; gap: 15px; }\n.row input { flex: 1; }\n\n.primary-btn { background: #2c3e50; color: white; padding: 12px 20px; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; }\n.add-btn { background: #27ae60; margin-bottom: 15px; }\n.sub-add-btn { \n    background: #ecf0f1; color: #2c3e50; border: 1px solid #bdc3c7; \n    padding: 5px 12px; font-size: 13px; margin-bottom: 10px; border-radius: 4px; cursor: pointer;\n}\n.sub-add-btn:hover { background: #dcdde1; }\n.remove-btn { background: #e74c3c; color: white; border: none; padding: 8px 14px; border-radius: 6px; cursor: pointer; margin-top: 10px; }\n\n.block { border: 1px solid #ddd; padding: 20px; border-radius: 8px; margin-bottom: 20px; background: #fafafa; position: relative; }\nlabel { display: block; font-size: 12px; color: #7f8c8d; margin-bottom: 4px; font-weight: bold; }\n<\/style>\n\n<div class=\"profile-wrapper\">\n    <div class=\"profile-card\">\n        <form id=\"profileForm\">\n            <h2>Professional Summary<\/h2>\n            <textarea name=\"summary\" required placeholder=\"Describe your career goals and key achievements...\"><\/textarea>\n\n            <h2>Experience<\/h2>\n            <div id=\"experience-container\"><\/div>\n            <button type=\"button\" class=\"primary-btn add-btn\" onclick=\"addExperience()\">+ Add Experience<\/button>\n\n            <h2>Education<\/h2>\n            <div id=\"education-container\"><\/div>\n            <button type=\"button\" class=\"primary-btn add-btn\" onclick=\"addEducation()\">+ Add Education<\/button>\n\n            <h2>Awards\/Certificates<\/h2>\n            <div id=\"award-container\"><\/div>\n            <button type=\"button\" class=\"primary-btn add-btn\" onclick=\"addAward()\">+ Add Award<\/button>\n\n            <h2>Leadership<\/h2>\n            <div id=\"leadership-container\"><\/div>\n            <button type=\"button\" class=\"primary-btn add-btn\" onclick=\"addLeadership()\">+ Add Leadership<\/button>\n\n            <h2>Skills<\/h2>\n            <div id=\"skills-container\"><\/div>\n            <button type=\"button\" class=\"primary-btn add-btn\" onclick=\"addSkill()\">+ Add Skill<\/button>\n\n            <br><br>\n            <button type=\"submit\" class=\"primary-btn\" style=\"width:100%\">Save Profile<\/button>\n        <\/form>\n    <\/div>\n<\/div>\n\n<script>\n\/* UTILITY TO AUTO-APPEND CHILD ELEMENTS *\/\nfunction appendInput(container, name, placeholder) {\n    const input = document.createElement(\"input\");\n    input.name = name;\n    input.placeholder = placeholder;\n    container.appendChild(input);\n}\n\n\/* EXPERIENCE *\/\nfunction addExperience() {\n    const div = document.createElement(\"div\");\n    div.className = \"block\";\n    div.innerHTML = `\n        <input name=\"job_title[]\" placeholder=\"Job Title\" required>\n        <input name=\"employer[]\" placeholder=\"Employer\" required>\n        <div class=\"row\">\n            <input name=\"exp_city[]\" placeholder=\"City\">\n            <input name=\"exp_state[]\" placeholder=\"State\">\n        <\/div>\n        <div class=\"row\">\n            <div style=\"flex:1\"><label>Start Date<\/label><input type=\"month\" name=\"exp_start[]\" required><\/div>\n            <div style=\"flex:1\"><label>End Date<\/label><input type=\"month\" name=\"exp_end[]\"><\/div>\n        <\/div>\n        <textarea name=\"exp_desc[]\" placeholder=\"Description\"><\/textarea>\n        <div class=\"exp-skills\"><\/div>\n        <button type=\"button\" class=\"sub-add-btn\" onclick=\"addExpSkill(this)\">+ Add Skill Used<\/button>\n        <br><button type=\"button\" class=\"remove-btn\" onclick=\"this.parentElement.remove()\">Remove<\/button>\n    `;\n    document.getElementById(\"experience-container\").appendChild(div);\n    addExpSkill(div.querySelector('.sub-add-btn')); \/\/ Add first skill automatically\n}\n\nfunction addExpSkill(btn) {\n    appendInput(btn.previousElementSibling, \"exp_skill[]\", \"Skill Used (e.g. Python)\");\n}\n\n\/* EDUCATION *\/\nfunction addEducation() {\n    const div = document.createElement(\"div\");\n    div.className = \"block\";\n    div.innerHTML = `\n        <input name=\"institution[]\" placeholder=\"Institution\" required>\n        <div class=\"row\">\n            <input name=\"edu_city[]\" placeholder=\"City\">\n            <input name=\"edu_state[]\" placeholder=\"State\">\n        <\/div>\n        <div class=\"row\">\n            <div style=\"flex:1\"><label>Graduation Date<\/label><input type=\"month\" name=\"grad_date[]\"><\/div>\n            <div style=\"flex:1\"><label>GPA<\/label><input name=\"gpa[]\" placeholder=\"e.g. 3.8\"><\/div>\n        <\/div>\n        <div class=\"majors\"><\/div>\n        <button type=\"button\" class=\"sub-add-btn\" onclick=\"addMajor(this)\">+ Add Major<\/button>\n        <div class=\"minors\"><\/div>\n        <button type=\"button\" class=\"sub-add-btn\" onclick=\"addMinor(this)\">+ Add Minor<\/button>\n        <br><button type=\"button\" class=\"remove-btn\" onclick=\"this.parentElement.remove()\">Remove<\/button>\n    `;\n    document.getElementById(\"education-container\").appendChild(div);\n    addMajor(div.querySelectorAll('.sub-add-btn')[0]); \/\/ Add first major\n    addMinor(div.querySelectorAll('.sub-add-btn')[1]); \/\/ Add first minor\n}\n\nfunction addMajor(btn) { appendInput(btn.previousElementSibling, \"major[]\", \"Major\"); }\nfunction addMinor(btn) { appendInput(btn.previousElementSibling, \"minor[]\", \"Minor\"); }\n\n\/* AWARDS *\/\nfunction addAward() {\n    const div = document.createElement(\"div\");\n    div.className = \"block\";\n    div.innerHTML = `\n        <input name=\"award_title[]\" placeholder=\"Award Title\">\n        <textarea name=\"award_description[]\" placeholder=\"Description\"><\/textarea>\n        <label>Date Received<\/label><input type=\"month\" name=\"award_date[]\">\n        <button type=\"button\" class=\"remove-btn\" onclick=\"this.parentElement.remove()\">Remove<\/button>\n    `;\n    document.getElementById(\"award-container\").appendChild(div);\n}\n\n\/* LEADERSHIP *\/\nfunction addLeadership() {\n    const div = document.createElement(\"div\");\n    div.className = \"block\";\n    div.innerHTML = `\n        <input name=\"organization_name[]\" placeholder=\"Organization\">\n        <input name=\"role_title[]\" placeholder=\"Role Title\">\n        <div class=\"row\">\n            <div style=\"flex:1\"><label>Start<\/label><input type=\"month\" name=\"lead_start[]\"><\/div>\n            <div style=\"flex:1\"><label>End<\/label><input type=\"month\" name=\"lead_end[]\"><\/div>\n        <\/div>\n        <textarea name=\"lead_desc[]\" placeholder=\"Description\"><\/textarea>\n        <button type=\"button\" class=\"remove-btn\" onclick=\"this.parentElement.remove()\">Remove<\/button>\n    `;\n    document.getElementById(\"leadership-container\").appendChild(div);\n}\n\n\/* SKILLS *\/\nfunction addSkill() {\n    const div = document.createElement(\"div\");\n    div.className = \"block\";\n    div.innerHTML = `\n        <input name=\"skill_name[]\" placeholder=\"Skill (e.g. Leadership)\">\n        <button type=\"button\" class=\"remove-btn\" onclick=\"this.parentElement.remove()\">Remove<\/button>\n    `;\n    document.getElementById(\"skills-container\").appendChild(div);\n}\n\n\/* SUBMIT LOGIC *\/\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n    const form = document.getElementById(\"profileForm\");\n    form.addEventListener(\"submit\", function(e) {\n        e.preventDefault();\n        \n        const formData = new FormData(form);\n        formData.append(\"action\", \"save_profile_data\");\n\n        fetch(\"\/wp-admin\/admin-ajax.php\", {\n            method: \"POST\",\n            body: formData\n        })\n        .then(res => res.json())\n        .then(data => {\n            if (data.success) {\n                window.location.href = \"\/index.php\/my-profile-dashboard\/\";\n            } else {\n                alert(data.data || \"Error saving profile.\");\n            }\n        });\n    });\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Professional Summary Experience + Add Experience Education + Add Education Awards\/Certificates + Add Award Leadership + Add Leadership Skills + Add Skill Save Profile<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-110","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Create Your Profile - Resume Chameleon<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Your Profile - Resume Chameleon\" \/>\n<meta property=\"og:description\" content=\"Professional Summary Experience + Add Experience Education + Add Education Awards\/Certificates + Add Award Leadership + Add Leadership Skills + Add Skill Save Profile\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/\" \/>\n<meta property=\"og:site_name\" content=\"Resume Chameleon\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-19T23:55:52+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/\",\"url\":\"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/\",\"name\":\"Create Your Profile - Resume Chameleon\",\"isPartOf\":{\"@id\":\"https:\/\/chameleon.students.mtu.edu\/#website\"},\"datePublished\":\"2026-02-26T23:49:08+00:00\",\"dateModified\":\"2026-03-19T23:55:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/chameleon.students.mtu.edu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Your Profile\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/chameleon.students.mtu.edu\/#website\",\"url\":\"https:\/\/chameleon.students.mtu.edu\/\",\"name\":\"Resume Chameleon\",\"description\":\"Your resume, your way.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/chameleon.students.mtu.edu\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Your Profile - Resume Chameleon","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/","og_locale":"en_US","og_type":"article","og_title":"Create Your Profile - Resume Chameleon","og_description":"Professional Summary Experience + Add Experience Education + Add Education Awards\/Certificates + Add Award Leadership + Add Leadership Skills + Add Skill Save Profile","og_url":"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/","og_site_name":"Resume Chameleon","article_modified_time":"2026-03-19T23:55:52+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/","url":"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/","name":"Create Your Profile - Resume Chameleon","isPartOf":{"@id":"https:\/\/chameleon.students.mtu.edu\/#website"},"datePublished":"2026-02-26T23:49:08+00:00","dateModified":"2026-03-19T23:55:52+00:00","breadcrumb":{"@id":"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/chameleon.students.mtu.edu\/index.php\/create-your-profile\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chameleon.students.mtu.edu\/"},{"@type":"ListItem","position":2,"name":"Create Your Profile"}]},{"@type":"WebSite","@id":"https:\/\/chameleon.students.mtu.edu\/#website","url":"https:\/\/chameleon.students.mtu.edu\/","name":"Resume Chameleon","description":"Your resume, your way.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chameleon.students.mtu.edu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/chameleon.students.mtu.edu\/index.php\/wp-json\/wp\/v2\/pages\/110","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chameleon.students.mtu.edu\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/chameleon.students.mtu.edu\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/chameleon.students.mtu.edu\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/chameleon.students.mtu.edu\/index.php\/wp-json\/wp\/v2\/comments?post=110"}],"version-history":[{"count":25,"href":"https:\/\/chameleon.students.mtu.edu\/index.php\/wp-json\/wp\/v2\/pages\/110\/revisions"}],"predecessor-version":[{"id":171,"href":"https:\/\/chameleon.students.mtu.edu\/index.php\/wp-json\/wp\/v2\/pages\/110\/revisions\/171"}],"wp:attachment":[{"href":"https:\/\/chameleon.students.mtu.edu\/index.php\/wp-json\/wp\/v2\/media?parent=110"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}