|
11 | 11 | <link rel="stylesheet" href="css/style.css">
|
12 | 12 | <style>
|
13 | 13 | .signup{
|
14 |
| - display: block; |
| 14 | + display: block; |
| 15 | + background: url('./img/back.jpg'); |
| 16 | + height: 756px; |
15 | 17 | }
|
| 18 | + |
16 | 19 | </style>
|
17 | 20 | <script src="js/signup_validator.js"></script>
|
18 | 21 | </head>
|
|
46 | 49 | <div class="form">
|
47 | 50 | <form action="/" method="post" name="myForm" onsubmit="return(validate());">
|
48 | 51 | <div class="field-wrap">
|
49 |
| - <input type="text" placeholder="Organization's Full Name" required autocomplete="off" /> |
| 52 | + <input type="text" class='form-control' placeholder="Organization's Full Name" required autocomplete="off" /> |
50 | 53 | </div>
|
51 | 54 | <div class="field-wrap">
|
52 |
| - <input type="email" name="EMail" placeholder="Email Address" required autocomplete="off"/> |
| 55 | + <input type="email" name="EMail" class='form-control' placeholder="Email Address" required autocomplete="off"/> |
53 | 56 | </div>
|
54 | 57 | <div class="top-row">
|
55 | 58 | <div class="field-wrap">
|
56 |
| - <input type="text" placeholder="Admin's Full Name" required autocomplete="off" /> |
| 59 | + <input type="text" class='form-control' placeholder="Admin's Full Name" required autocomplete="off" /> |
57 | 60 | </div>
|
58 | 61 | <div class="field-wrap">
|
59 |
| - <select name="Organiztion Type" id="drop" required> |
| 62 | + <select name="Organiztion Type" class='form-control' required> |
60 | 63 | <option value="" disabled selected>Organization Type</option>
|
61 | 64 | <option value="1">Type A</option>
|
62 | 65 | <option value="2">Type B</option>
|
|
66 | 69 | </div>
|
67 | 70 | </div>
|
68 | 71 | <div class="field-wrap">
|
69 |
| - <input type="text" placeholder="Github Handle Link" required autocomplete="off"/> |
| 72 | + <input type="text" class='form-control' placeholder="Github Handle Link" required autocomplete="off"/> |
70 | 73 | </div>
|
71 | 74 | <div class="field-wrap">
|
72 |
| - <input type="text" placeholder="Organization Website Link" required autocomplete="off"/> |
| 75 | + <input type="text" class='form-control' placeholder="Organization Website Link" required autocomplete="off"/> |
73 | 76 | </div>
|
74 | 77 | <div class="top-row">
|
75 | 78 | <div class="field-wrap">
|
76 |
| - <input type="password" id="pass" placeholder="Password" required autocomplete="off" /> |
| 79 | + <input type="password" class='form-control' id="pass" placeholder="Password" required autocomplete="off" /> |
77 | 80 | </div>
|
78 | 81 | <div class="field-wrap">
|
79 |
| - <input type="password" id="cpass" placeholder="Confirm Password" required autocomplete="off"/> |
| 82 | + <input type="password" class='form-control' id="cpass" placeholder="Confirm Password" required autocomplete="off"/> |
80 | 83 | </div>
|
81 | 84 | </div>
|
82 | 85 | <div class="field-wrap">
|
83 | 86 | <label class="container">I accept the <i>Code of Conduct</i> of this community
|
84 |
| - <input type="checkbox" checked="checked" name="check" id="check"> |
| 87 | + <input type="checkbox" class='form-control' checked="checked" name="check" id="check"> |
85 | 88 | <span class="checkorg"></span>
|
86 | 89 | </label>
|
87 | 90 | </div>
|
88 |
| - <button type="submit" class="button-block org_sign">Sign In</button> |
| 91 | + <div style='text-align: center'><button type="submit" class="btn btn-success" style='width : 30%'>Sign In</button></div> |
| 92 | + </form> |
89 | 93 | </form>
|
90 | 94 | </div>
|
91 | 95 | </div>
|
|
0 commit comments