Submit button not working in Bootstrap form
- If you put
type=submit
it is a Submit Button - if you put
type=button
it is just a button, It does not submit your form inputs.
and also you don't want to use both of these
Your problem is this
<button type="button" value=" Send" class="btn btn-success" type="submit" id="submit" />
You've set the type twice. Your browser is only accepting the first, which is "button".
<button type="submit" value=" Send" class="btn btn-success" id="submit" />
Replace this
<button type="button" value=" Send" class="btn btn-success" type="submit" id="submit">
with
<button value=" Send" class="btn btn-success" type="submit" id="submit">