Asp.net C# Text box
Am Using Bostrip Template in that am using asp.net text box.Am using 2 text box and One button. when i type the text inside text box then Click Submit.
Textbox box value take empty.not get typed text what i do
<form role="form">
<div class="form-group">
<label for="email">Email address:</label>
<input type="email" class="form-control" id="email">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd">
</div>
<div class="checkbox">
<label><input type="checkbox"> Remember me</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>