newProject.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!--
  2. -- Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. -- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. -->
  5. <!DOCTYPE html>
  6. <html lang="en">
  7. <head>
  8. <meta charset="UTF-8">
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <script type="module" src="${toolkitUri}"></script>
  11. <script type="module" src="${mainUri}"></script>
  12. <link rel="stylesheet" href="${styleUri}">
  13. <title>Create project</title>
  14. </head>
  15. <body>
  16. <div class="box_wrapper">
  17. <div class="form_heading">
  18. <h2>Create project</h2>
  19. <vscode-divider class="divider_wrapper"></vscode-divider>
  20. </div>
  21. </div>
  22. <div class="box_wrapper">
  23. <div class="form_body">
  24. <div id="text_filed_div">
  25. <label><b>Project Name: </b></label>
  26. <vscode-text-field id="ipt_projName"></vscode-text-field>
  27. </div>
  28. <div id="select_div">
  29. <label><b>Template:</b></label>
  30. <vscode-dropdown id="select_dropdown">
  31. <vscode-option value="" selected:disabled style="display:none"></vscode-option>
  32. <vscode-option value="default">default</vscode-option>
  33. </vscode-dropdown>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="box_wrapper">
  38. <div class="form_bottom">
  39. <vscode-divider></vscode-divider>
  40. <div class="proj_submit_btn_wrapper">
  41. <div></div>
  42. <div id="btn">
  43. <vscode-button id="btn_submit"><b>Create</b></vscode-buton>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </body>
  49. </html>