Skip to content

Rpsl/interview-report-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Interview report generator

Страница с простой html формой, заполнив которую, можно получить отчет о проведенном собеседование. Чтобы не забывать о чем поговорил с кандидатом.

  • К странице с формой не подключаются никакие внешние скрипты, с целью уважения персональных данных
  • Страница работает в браузере и не требует backend
  • Данные формы сохраняются в localstorage браузера

--> Форма <---

how it works?

  • We have html page with static form
  • Also we have handlebars template for pdf like page
  • When we submit form, data from form compiled by handelbars into html, opens a new page and calls the print method
function openPrintPage(content) {
    var printWindow = window.open('', '', 'height=400,width=800');
    printWindow.document.write(content);
    printWindow.document.close();
    printWindow.print();
}

development

$ yarn install
$ yarn build

$ yarn serve

todo

  • Autosize for textarea
  • Create publish comand for generating static vesion in docs/ forlder at now gh-pages work from root of repo
  • Add browsersync and autoreload
  • Add serve method and remove web-server.sh
  • Make form dynamic

About

html форма для генерации pdf отчета о результатах собеседования

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published