Posts

Showing posts from December, 2023
Image
                           MY PROFILE(HTML) SOURCE LINE :                                        <!DOCTYPE html> <html> <head>     <title>Profile Page</title>     <style>         body {             background-color: #f1f1f1;             font-family: Arial, sans-serif;         }                 h1 {             text-align: center;             color: #666;         }                 .container {             background-color: #fff;           ...
Image
                         SMTP CONCEPT DESIGN: CODINGS: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Net.Mail; using System.Net; namespace mailotp {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }                  private void button1_Click(object sender, EventArgs e)         {             generateotp();             sendemail();         }         string otpm = string.Empty;         p...
Image
                           HTML LOG IN FORM CODING: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title > </ head > < body >     <! DOCTYPE html >     < html >     < head >         < title > Login Form </ title >         < style >             body {                 background-color : #f2f2f2 ;             }             form {                 background-color : white ;             ...