Guides/MVC-Integration/Phase-II-Draft.md
... ...
@@ -214,6 +214,9 @@ namespace Sample_MVCApp.Controllers {
214 214
**b.** Copy and paste below code in Login.cshtml
215 215
216 216
```html
217
+//This is how Login.cshtml should look like
218
+
219
+
217 220
@model Sample_MVCApp.Models.User
218 221
@{
219 222
ViewBag.Title = "Login";
... ...
@@ -266,9 +269,10 @@ namespace Sample_MVCApp.Controllers {
266 269
267 270
**c.** Right click on public ActionResult Register() -> Add View -> Name it Register -> Add
268 271
269
-**d.** Copy and paste the below code to corresponding file
272
+**d.** Copy and paste the below code in Register.cshtml
270 273
271 274
```html
275
+//This is how Register.cshtml should look like
272 276
273 277
@model Sample_MVCApp.Models.User
274 278