How to create a template for Pages?

All you need to do is just create a new file in your theme root directory. This file must start with following code:

<?php 
/**
 * Template Name: No Sidebars
 */ 

Name your file, for example, page_nosidebars.php and then WP will add No Sidebars template to available templates list.

There is nice article about it Creating Custom Page Templates. I think it will help you to create your own.