license.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <style>
  2. .flexBox{
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. width: 100%;
  7. height: 100%;
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. flex-direction:column;
  12. background: url(assets/images/login/bg01.png) no-repeat;
  13. background-size: 100% 50%
  14. }
  15. .centerBox{
  16. width: 300px;
  17. padding: 25px;
  18. border-radius: 8px;
  19. /* border: 1px #999999 solid; */
  20. background-color: white;
  21. box-shadow: 0px 0px 5px 5px #dddddd;
  22. }
  23. .centerBox .tit{
  24. text-align: center;
  25. font-size: 16px;
  26. font-weight: bold
  27. }
  28. .lable{
  29. margin-top: 15px;
  30. color: rgb(25,158,221)
  31. }
  32. .ipt{
  33. margin-top: 7px;
  34. padding: 10px!important;
  35. border-radius: 6px!important;
  36. border: 2px #f0f1f0 solid!important
  37. }
  38. .ipt:hover{
  39. border: 2px #d1d1d1 solid!important
  40. }
  41. .sub{
  42. width: 100%;
  43. height: 30px;
  44. margin-top: 7px;
  45. border: 0;
  46. border-radius: 4px;
  47. color: black
  48. }
  49. .sub:hover{
  50. color: white;
  51. background: #337ab7!important
  52. }
  53. .power{
  54. display: flex;
  55. width: 100%;
  56. justify-content:space-between;
  57. margin-top: 20px
  58. }
  59. .power div{
  60. color: rgb(25,158,221);
  61. cursor: pointer;
  62. }
  63. </style>
  64. <div ng-controller="licenseFormCtrl">
  65. <div class="flexBox">
  66. <div class="centerBox">
  67. <div class="tit">管理您的许可证</div>
  68. <div class="lable">
  69. 授权密匙
  70. </div>
  71. <input type="text" class="form-control ipt" ng-model="licensePass">
  72. <input type="button" class="sub" value="确定" ng-click="subLicensePass()">
  73. <div class="power">
  74. <!-- <div ng-click="cliUse()" ng-show="shiyong">点击试用(30天)</div> -->
  75. <div ng-click="seeCode()">查看机器编码</div>
  76. </div>
  77. </div>
  78. <div ng-show="seeFeatureCode">
  79. 您的机器编码是:{{featureCode}}
  80. </div>
  81. </div>
  82. </div>