To show a message instead of using the alert box you can insert a hidden div on your form and show it instead of using the alert.

Add a class to div tag

<div class="message-box"></div>

and javascript

<script>
     $(".message-box").text("Welcome to c-sharpcode.com !").show();
</script>