Skip to content

Commit 8a7f48a

Browse files
authored
Merge pull request #143 from codeuino/development
merge development to master
2 parents 72d54c7 + 020e411 commit 8a7f48a

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

views/signup_community.html

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@
1111
<link rel="stylesheet" href="css/style.css">
1212
<style>
1313
.signup{
14-
display: block;
14+
display: block;
15+
background: url('./img/back.jpg');
16+
height: 756px;
1517
}
18+
1619
</style>
1720
<script src="js/signup_validator.js"></script>
1821
</head>
@@ -46,17 +49,17 @@
4649
<div class="form">
4750
<form action="/" method="post" name="myForm" onsubmit="return(validate());">
4851
<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" />
5053
</div>
5154
<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"/>
5356
</div>
5457
<div class="top-row">
5558
<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" />
5760
</div>
5861
<div class="field-wrap">
59-
<select name="Organiztion Type" id="drop" required>
62+
<select name="Organiztion Type" class='form-control' required>
6063
<option value="" disabled selected>Organization Type</option>
6164
<option value="1">Type A</option>
6265
<option value="2">Type B</option>
@@ -66,26 +69,27 @@
6669
</div>
6770
</div>
6871
<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"/>
7073
</div>
7174
<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"/>
7376
</div>
7477
<div class="top-row">
7578
<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" />
7780
</div>
7881
<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"/>
8083
</div>
8184
</div>
8285
<div class="field-wrap">
8386
<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">
8588
<span class="checkorg"></span>
8689
</label>
8790
</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>
8993
</form>
9094
</div>
9195
</div>

0 commit comments

Comments
 (0)